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

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

Issue 1272153004: Add glCompressedCopySubTextureCHROMIUM (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 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 930 matching lines...) Expand 10 before | Expand all | Expand 10 after
941 GLsizei width, 941 GLsizei width,
942 GLsizei height, 942 GLsizei height,
943 GLboolean unpack_flip_y, 943 GLboolean unpack_flip_y,
944 GLboolean unpack_premultiply_alpha, 944 GLboolean unpack_premultiply_alpha,
945 GLboolean unpack_unmultiply_alpha) override; 945 GLboolean unpack_unmultiply_alpha) override;
946 946
947 void CompressedCopyTextureCHROMIUM(GLenum target, 947 void CompressedCopyTextureCHROMIUM(GLenum target,
948 GLenum source_id, 948 GLenum source_id,
949 GLenum dest_id) override; 949 GLenum dest_id) override;
950 950
951 void CompressedCopySubTextureCHROMIUM(GLenum target,
952 GLenum source_id,
953 GLenum dest_id,
954 GLint xoffset,
955 GLint yoffset,
956 GLint x,
957 GLint y,
958 GLsizei width,
959 GLsizei height) override;
960
951 void DrawArraysInstancedANGLE(GLenum mode, 961 void DrawArraysInstancedANGLE(GLenum mode,
952 GLint first, 962 GLint first,
953 GLsizei count, 963 GLsizei count,
954 GLsizei primcount) override; 964 GLsizei primcount) override;
955 965
956 void DrawElementsInstancedANGLE(GLenum mode, 966 void DrawElementsInstancedANGLE(GLenum mode,
957 GLsizei count, 967 GLsizei count,
958 GLenum type, 968 GLenum type,
959 const void* indices, 969 const void* indices,
960 GLsizei primcount) override; 970 GLsizei primcount) override;
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
1100 void StencilThenCoverStrokePathCHROMIUM(GLuint path, 1110 void StencilThenCoverStrokePathCHROMIUM(GLuint path,
1101 GLint reference, 1111 GLint reference,
1102 GLuint mask, 1112 GLuint mask,
1103 GLenum coverMode) override; 1113 GLenum coverMode) override;
1104 1114
1105 GLenum GetGraphicsResetStatusKHR() override; 1115 GLenum GetGraphicsResetStatusKHR() override;
1106 1116
1107 void BlendBarrierKHR() override; 1117 void BlendBarrierKHR() override;
1108 1118
1109 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_AUTOGEN_H_ 1119 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_AUTOGEN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698