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

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: 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 side-by-side diff with in-line comments
Download patch
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 13aa7222180ef89752a067537e1f4f53b9fb7c24..0dfd2622efb8dc0b61fc97baaa8a36d598c05a08 100644
--- a/gpu/command_buffer/client/gles2_cmd_helper_autogen.h
+++ b/gpu/command_buffer/client/gles2_cmd_helper_autogen.h
@@ -3095,4 +3095,36 @@ void BlendBarrierKHR() {
}
}
+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_

Powered by Google App Engine
This is Rietveld 408576698