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

Side by Side Diff: gpu/command_buffer/client/gles2_implementation_autogen.h

Issue 864513004: gpu: introduce glCopySubTextureCHROMIUM (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address concerns of owners Created 5 years, 10 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 820 matching lines...) Expand 10 before | Expand all | Expand 10 after
831 GLuint ioSurfaceId, 831 GLuint ioSurfaceId,
832 GLuint plane) override; 832 GLuint plane) override;
833 833
834 void CopyTextureCHROMIUM(GLenum target, 834 void CopyTextureCHROMIUM(GLenum target,
835 GLenum source_id, 835 GLenum source_id,
836 GLenum dest_id, 836 GLenum dest_id,
837 GLint level, 837 GLint level,
838 GLint internalformat, 838 GLint internalformat,
839 GLenum dest_type) override; 839 GLenum dest_type) override;
840 840
841 void CopySubTextureCHROMIUM(GLenum target,
842 GLenum source_id,
843 GLenum dest_id,
844 GLint level,
845 GLint xoffset,
846 GLint yoffset) override;
847
841 void DrawArraysInstancedANGLE(GLenum mode, 848 void DrawArraysInstancedANGLE(GLenum mode,
842 GLint first, 849 GLint first,
843 GLsizei count, 850 GLsizei count,
844 GLsizei primcount) override; 851 GLsizei primcount) override;
845 852
846 void DrawElementsInstancedANGLE(GLenum mode, 853 void DrawElementsInstancedANGLE(GLenum mode,
847 GLsizei count, 854 GLsizei count,
848 GLenum type, 855 GLenum type,
849 const void* indices, 856 const void* indices,
850 GLsizei primcount) override; 857 GLsizei primcount) override;
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
945 952
946 void SwapInterval(GLint interval) override; 953 void SwapInterval(GLint interval) override;
947 954
948 void MatrixLoadfCHROMIUM(GLenum matrixMode, const GLfloat* m) override; 955 void MatrixLoadfCHROMIUM(GLenum matrixMode, const GLfloat* m) override;
949 956
950 void MatrixLoadIdentityCHROMIUM(GLenum matrixMode) override; 957 void MatrixLoadIdentityCHROMIUM(GLenum matrixMode) override;
951 958
952 void BlendBarrierKHR() override; 959 void BlendBarrierKHR() override;
953 960
954 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_AUTOGEN_H_ 961 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_AUTOGEN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698