Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(816)

Side by Side Diff: mojo/gpu/mojo_gles2_impl_autogen.h

Issue 169403005: command_buffer: Implement path rendering functions for CHROMIUM_path_rendering (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@nv-pr-02-texgen
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // This file is auto-generated from 5 // This file is auto-generated from
6 // gpu/command_buffer/build_gles2_cmd_buffer.py 6 // gpu/command_buffer/build_gles2_cmd_buffer.py
7 // It's formatted by clang-format using chromium coding style: 7 // It's formatted by clang-format using chromium coding style:
8 // clang-format -i -style=chromium filename 8 // clang-format -i -style=chromium filename
9 // DO NOT EDIT! 9 // DO NOT EDIT!
10 10
(...skipping 765 matching lines...) Expand 10 before | Expand all | Expand 10 after
776 GLint bounds_y, 776 GLint bounds_y,
777 GLint bounds_width, 777 GLint bounds_width,
778 GLint bounds_height, 778 GLint bounds_height,
779 GLfloat uv_x, 779 GLfloat uv_x,
780 GLfloat uv_y, 780 GLfloat uv_y,
781 GLfloat uv_width, 781 GLfloat uv_width,
782 GLfloat uv_height) override; 782 GLfloat uv_height) override;
783 void SwapInterval(GLint interval) override; 783 void SwapInterval(GLint interval) override;
784 void MatrixLoadfCHROMIUM(GLenum matrixMode, const GLfloat* m) override; 784 void MatrixLoadfCHROMIUM(GLenum matrixMode, const GLfloat* m) override;
785 void MatrixLoadIdentityCHROMIUM(GLenum matrixMode) override; 785 void MatrixLoadIdentityCHROMIUM(GLenum matrixMode) override;
786 GLuint GenPathsCHROMIUM(GLsizei range) override;
787 void DeletePathsCHROMIUM(GLuint path, GLsizei range) override;
788 GLboolean IsPathCHROMIUM(GLuint path) override;
789 void PathCommandsCHROMIUM(GLuint path,
790 GLsizei numCommands,
791 const GLubyte* commands,
792 GLsizei numCoords,
793 GLenum coordType,
794 const GLvoid* coords) override;
795 void PathParameterfCHROMIUM(GLuint path,
796 GLenum pname,
797 GLfloat value) override;
798 void PathParameteriCHROMIUM(GLuint path, GLenum pname, GLint value) override;
799 void PathStencilFuncCHROMIUM(GLenum func, GLint ref, GLuint mask) override;
800 void StencilFillPathCHROMIUM(GLuint path,
801 GLenum fillMode,
802 GLuint mask) override;
803 void StencilStrokePathCHROMIUM(GLuint path,
804 GLint reference,
805 GLuint mask) override;
806 void CoverFillPathCHROMIUM(GLuint path, GLenum coverMode) override;
807 void CoverStrokePathCHROMIUM(GLuint path, GLenum coverMode) override;
808 void StencilThenCoverFillPathCHROMIUM(GLuint path,
809 GLenum fillMode,
810 GLuint mask,
811 GLenum coverMode) override;
812 void StencilThenCoverStrokePathCHROMIUM(GLuint path,
813 GLint reference,
814 GLuint mask,
815 GLenum coverMode) override;
786 GLenum GetGraphicsResetStatusKHR() override; 816 GLenum GetGraphicsResetStatusKHR() override;
787 void BlendBarrierKHR() override; 817 void BlendBarrierKHR() override;
788 818
789 private: 819 private:
790 MojoGLES2Context context_; 820 MojoGLES2Context context_;
791 }; 821 };
792 822
793 } // namespace mojo 823 } // namespace mojo
794 #endif // MOJO_GPU_MOJO_GLES2_IMPL_AUTOGEN_H_ 824 #endif // MOJO_GPU_MOJO_GLES2_IMPL_AUTOGEN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698