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

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

Issue 1136713003: Add ES3 commands GetVertexAttribI{u}iv to GPU command buffer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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 1158 matching lines...) Expand 10 before | Expand all | Expand 10 after
1169 GLenum pname, 1169 GLenum pname,
1170 uint32_t params_shm_id, 1170 uint32_t params_shm_id,
1171 uint32_t params_shm_offset) { 1171 uint32_t params_shm_offset) {
1172 gles2::cmds::GetVertexAttribiv* c = 1172 gles2::cmds::GetVertexAttribiv* c =
1173 GetCmdSpace<gles2::cmds::GetVertexAttribiv>(); 1173 GetCmdSpace<gles2::cmds::GetVertexAttribiv>();
1174 if (c) { 1174 if (c) {
1175 c->Init(index, pname, params_shm_id, params_shm_offset); 1175 c->Init(index, pname, params_shm_id, params_shm_offset);
1176 } 1176 }
1177 } 1177 }
1178 1178
1179 void GetVertexAttribIiv(GLuint index,
1180 GLenum pname,
1181 uint32_t params_shm_id,
1182 uint32_t params_shm_offset) {
1183 gles2::cmds::GetVertexAttribIiv* c =
1184 GetCmdSpace<gles2::cmds::GetVertexAttribIiv>();
1185 if (c) {
1186 c->Init(index, pname, params_shm_id, params_shm_offset);
1187 }
1188 }
1189
1190 void GetVertexAttribIuiv(GLuint index,
1191 GLenum pname,
1192 uint32_t params_shm_id,
1193 uint32_t params_shm_offset) {
1194 gles2::cmds::GetVertexAttribIuiv* c =
1195 GetCmdSpace<gles2::cmds::GetVertexAttribIuiv>();
1196 if (c) {
1197 c->Init(index, pname, params_shm_id, params_shm_offset);
1198 }
1199 }
1200
1179 void GetVertexAttribPointerv(GLuint index, 1201 void GetVertexAttribPointerv(GLuint index,
1180 GLenum pname, 1202 GLenum pname,
1181 uint32_t pointer_shm_id, 1203 uint32_t pointer_shm_id,
1182 uint32_t pointer_shm_offset) { 1204 uint32_t pointer_shm_offset) {
1183 gles2::cmds::GetVertexAttribPointerv* c = 1205 gles2::cmds::GetVertexAttribPointerv* c =
1184 GetCmdSpace<gles2::cmds::GetVertexAttribPointerv>(); 1206 GetCmdSpace<gles2::cmds::GetVertexAttribPointerv>();
1185 if (c) { 1207 if (c) {
1186 c->Init(index, pname, pointer_shm_id, pointer_shm_offset); 1208 c->Init(index, pname, pointer_shm_id, pointer_shm_offset);
1187 } 1209 }
1188 } 1210 }
(...skipping 1602 matching lines...) Expand 10 before | Expand all | Expand 10 after
2791 } 2813 }
2792 2814
2793 void BlendBarrierKHR() { 2815 void BlendBarrierKHR() {
2794 gles2::cmds::BlendBarrierKHR* c = GetCmdSpace<gles2::cmds::BlendBarrierKHR>(); 2816 gles2::cmds::BlendBarrierKHR* c = GetCmdSpace<gles2::cmds::BlendBarrierKHR>();
2795 if (c) { 2817 if (c) {
2796 c->Init(); 2818 c->Init();
2797 } 2819 }
2798 } 2820 }
2799 2821
2800 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_CMD_HELPER_AUTOGEN_H_ 2822 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_CMD_HELPER_AUTOGEN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698