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

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

Issue 1119723003: Add glCopyCompressedTextureCHROMIUM (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix comments in tests Created 5 years, 6 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 894 matching lines...) Expand 10 before | Expand all | Expand 10 after
905 GLenum dest_id, 905 GLenum dest_id,
906 GLint internalformat, 906 GLint internalformat,
907 GLenum dest_type) override; 907 GLenum dest_type) override;
908 908
909 void CopySubTextureCHROMIUM(GLenum target, 909 void CopySubTextureCHROMIUM(GLenum target,
910 GLenum source_id, 910 GLenum source_id,
911 GLenum dest_id, 911 GLenum dest_id,
912 GLint xoffset, 912 GLint xoffset,
913 GLint yoffset) override; 913 GLint yoffset) override;
914 914
915 void CopyCompressedTextureCHROMIUM(GLenum target,
916 GLenum source_id,
917 GLenum dest_id,
918 GLenum internalformat,
919 GLenum dest_type,
920 GLsizei source_size) override;
921
915 void DrawArraysInstancedANGLE(GLenum mode, 922 void DrawArraysInstancedANGLE(GLenum mode,
916 GLint first, 923 GLint first,
917 GLsizei count, 924 GLsizei count,
918 GLsizei primcount) override; 925 GLsizei primcount) override;
919 926
920 void DrawElementsInstancedANGLE(GLenum mode, 927 void DrawElementsInstancedANGLE(GLenum mode,
921 GLsizei count, 928 GLsizei count,
922 GLenum type, 929 GLenum type,
923 const void* indices, 930 const void* indices,
924 GLsizei primcount) override; 931 GLsizei primcount) override;
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
1019 1026
1020 void SwapInterval(GLint interval) override; 1027 void SwapInterval(GLint interval) override;
1021 1028
1022 void MatrixLoadfCHROMIUM(GLenum matrixMode, const GLfloat* m) override; 1029 void MatrixLoadfCHROMIUM(GLenum matrixMode, const GLfloat* m) override;
1023 1030
1024 void MatrixLoadIdentityCHROMIUM(GLenum matrixMode) override; 1031 void MatrixLoadIdentityCHROMIUM(GLenum matrixMode) override;
1025 1032
1026 void BlendBarrierKHR() override; 1033 void BlendBarrierKHR() override;
1027 1034
1028 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_AUTOGEN_H_ 1035 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_AUTOGEN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698