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

Unified Diff: gpu/command_buffer/client/gles2_cmd_helper_autogen.h

Issue 1309743005: command_buffer: Implement EXT_blend_func_extended (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@new-05-path-fragment-input-gen
Patch Set: rebase Created 5 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gpu/command_buffer/client/gles2_c_lib_autogen.h ('k') | gpu/command_buffer/client/gles2_implementation.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/command_buffer/client/gles2_cmd_helper_autogen.h
diff --git a/gpu/command_buffer/client/gles2_cmd_helper_autogen.h b/gpu/command_buffer/client/gles2_cmd_helper_autogen.h
index b5cf24cd4bad47391ef975c729f446159112e854..b87750aa2e5dd134765bcfcdf128c14ab78fe802 100644
--- a/gpu/command_buffer/client/gles2_cmd_helper_autogen.h
+++ b/gpu/command_buffer/client/gles2_cmd_helper_autogen.h
@@ -3166,4 +3166,36 @@ void ApplyScreenSpaceAntialiasingCHROMIUM() {
}
}
+void BindFragDataLocationIndexedEXTBucket(GLuint program,
+ GLuint colorNumber,
+ GLuint index,
+ uint32_t name_bucket_id) {
+ gles2::cmds::BindFragDataLocationIndexedEXTBucket* c =
+ GetCmdSpace<gles2::cmds::BindFragDataLocationIndexedEXTBucket>();
+ if (c) {
+ c->Init(program, colorNumber, index, name_bucket_id);
+ }
+}
+
+void BindFragDataLocationEXTBucket(GLuint program,
+ GLuint colorNumber,
+ uint32_t name_bucket_id) {
+ gles2::cmds::BindFragDataLocationEXTBucket* c =
+ GetCmdSpace<gles2::cmds::BindFragDataLocationEXTBucket>();
+ if (c) {
+ c->Init(program, colorNumber, name_bucket_id);
+ }
+}
+
+void GetFragDataIndexEXT(GLuint program,
+ uint32_t name_bucket_id,
+ uint32_t index_shm_id,
+ uint32_t index_shm_offset) {
+ gles2::cmds::GetFragDataIndexEXT* c =
+ GetCmdSpace<gles2::cmds::GetFragDataIndexEXT>();
+ if (c) {
+ c->Init(program, name_bucket_id, index_shm_id, index_shm_offset);
+ }
+}
+
#endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_CMD_HELPER_AUTOGEN_H_
« no previous file with comments | « gpu/command_buffer/client/gles2_c_lib_autogen.h ('k') | gpu/command_buffer/client/gles2_implementation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698