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

Side by Side Diff: gpu/command_buffer/client/gles2_implementation_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: rebase and cleanup ids Created 6 years, 2 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 714 matching lines...) Expand 10 before | Expand all | Expand 10 after
725 GLint bounds_height, 725 GLint bounds_height,
726 GLfloat uv_x, 726 GLfloat uv_x,
727 GLfloat uv_y, 727 GLfloat uv_y,
728 GLfloat uv_width, 728 GLfloat uv_width,
729 GLfloat uv_height) OVERRIDE; 729 GLfloat uv_height) OVERRIDE;
730 730
731 virtual void MatrixLoadfCHROMIUM(GLenum matrixMode, const GLfloat* m) OVERRIDE; 731 virtual void MatrixLoadfCHROMIUM(GLenum matrixMode, const GLfloat* m) OVERRIDE;
732 732
733 virtual void MatrixLoadIdentityCHROMIUM(GLenum matrixMode) OVERRIDE; 733 virtual void MatrixLoadIdentityCHROMIUM(GLenum matrixMode) OVERRIDE;
734 734
735 virtual GLuint GenPathsCHROMIUM(GLsizei range) OVERRIDE;
736
737 virtual void DeletePathsCHROMIUM(GLuint path, GLsizei range) OVERRIDE;
738
739 virtual GLboolean IsPathCHROMIUM(GLuint path) OVERRIDE;
740
741 virtual void PathCommandsCHROMIUM(GLuint path,
742 GLsizei numCommands,
743 const GLubyte* commands,
744 GLsizei numCoords,
745 const GLfloat* coords) OVERRIDE;
746
747 virtual void PathParameterfCHROMIUM(GLuint path,
748 GLenum pname,
749 GLfloat value) OVERRIDE;
750
751 virtual void PathParameteriCHROMIUM(GLuint path,
752 GLenum pname,
753 GLint value) OVERRIDE;
754
755 virtual void PathStencilFuncCHROMIUM(GLenum func,
756 GLint ref,
757 GLuint mask) OVERRIDE;
758
759 virtual void StencilFillPathCHROMIUM(GLuint path,
760 GLenum fillMode,
761 GLuint mask) OVERRIDE;
762
763 virtual void StencilStrokePathCHROMIUM(GLuint path,
764 GLint reference,
765 GLuint mask) OVERRIDE;
766
767 virtual void CoverFillPathCHROMIUM(GLuint path) OVERRIDE;
768
769 virtual void CoverStrokePathCHROMIUM(GLuint path) OVERRIDE;
770
771 virtual void StencilThenCoverFillPathCHROMIUM(GLuint path,
772 GLenum fillMode,
773 GLuint mask) OVERRIDE;
774
775 virtual void StencilThenCoverStrokePathCHROMIUM(GLuint path,
776 GLint reference,
777 GLuint mask) OVERRIDE;
778
735 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_AUTOGEN_H_ 779 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_AUTOGEN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698