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

Unified Diff: gpu/command_buffer/common/gles2_cmd_format_autogen.h

Issue 1298523003: Add GL_CHROMIUM_screen_space_antialiasing to support alternative AA (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix nit Created 5 years, 3 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/common/gles2_cmd_format_autogen.h
diff --git a/gpu/command_buffer/common/gles2_cmd_format_autogen.h b/gpu/command_buffer/common/gles2_cmd_format_autogen.h
index 69a0d5e3d377177d93a445abcf0c9249b64d44ac..3f288cb3ebd45f1e2df76470057a9a3d52ea21a1 100644
--- a/gpu/command_buffer/common/gles2_cmd_format_autogen.h
+++ b/gpu/command_buffer/common/gles2_cmd_format_autogen.h
@@ -14381,4 +14381,32 @@ static_assert(sizeof(BlendBarrierKHR) == 4,
static_assert(offsetof(BlendBarrierKHR, header) == 0,
"offset of BlendBarrierKHR header should be 0");
+struct ApplyScreenSpaceAntialiasingCHROMIUM {
+ typedef ApplyScreenSpaceAntialiasingCHROMIUM ValueType;
+ static const CommandId kCmdId = kApplyScreenSpaceAntialiasingCHROMIUM;
+ static const cmd::ArgFlags kArgFlags = cmd::kFixed;
+ static const uint8 cmd_flags = CMD_FLAG_SET_TRACE_LEVEL(3);
+
+ static uint32_t ComputeSize() {
+ return static_cast<uint32_t>(sizeof(ValueType)); // NOLINT
+ }
+
+ void SetHeader() { header.SetCmd<ValueType>(); }
+
+ void Init() { SetHeader(); }
+
+ void* Set(void* cmd) {
+ static_cast<ValueType*>(cmd)->Init();
+ return NextCmdAddress<ValueType>(cmd);
+ }
+
+ gpu::CommandHeader header;
+};
+
+static_assert(sizeof(ApplyScreenSpaceAntialiasingCHROMIUM) == 4,
+ "size of ApplyScreenSpaceAntialiasingCHROMIUM should be 4");
+static_assert(
+ offsetof(ApplyScreenSpaceAntialiasingCHROMIUM, header) == 0,
+ "offset of ApplyScreenSpaceAntialiasingCHROMIUM header should be 0");
+
#endif // GPU_COMMAND_BUFFER_COMMON_GLES2_CMD_FORMAT_AUTOGEN_H_
« no previous file with comments | « gpu/command_buffer/cmd_buffer_functions.txt ('k') | gpu/command_buffer/common/gles2_cmd_format_test_autogen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698