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

Unified Diff: gpu/GLES2/gl2extchromium.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: add extension 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/GLES2/gl2extchromium.h
diff --git a/gpu/GLES2/gl2extchromium.h b/gpu/GLES2/gl2extchromium.h
index 584d29a267d96737a951a9d45682eb61bd6da913..66aa373b489c15fb6cf3d44fac241b50a36157d4 100644
--- a/gpu/GLES2/gl2extchromium.h
+++ b/gpu/GLES2/gl2extchromium.h
@@ -520,6 +520,16 @@ typedef GLboolean (GL_APIENTRYP PFNGLENABLEFEATURECHROMIUMPROC) (
#endif
#endif /* GL_CHROMIUM_command_buffer_latency_query */
+/* GL_CHROMIUM_screen_space_antialiasing */
+#ifndef GL_CHROMIUM_screen_space_antialiasing
+#define GL_CHROMIUM_screen_space_antialiasing 1
+#ifdef GL_GLEXT_PROTOTYPES
+GL_APICALL void GL_APIENTRY glApplyScreenSpaceAntialiasing();
Ken Russell (switch to Gerrit) 2015/08/28 02:34:02 Should be glApplyScreenSpaceAntialiasingCHROMIUM.
+#endif
+typedef void (GL_APIENTRYP PFNGLAPPLYSCREENSPACEANTIALIASINGPROC) ();
Ken Russell (switch to Gerrit) 2015/08/28 02:34:03 Should be PFNGLAPPLYSCREENSPACEANTIALIASINGCHROMIU
+#endif /* GL_CHROMIUM_screen_space_antialiasing */
+
+
/* GL_ARB_robustness */
#ifndef GL_ARB_robustness
#define GL_ARB_robustness 1

Powered by Google App Engine
This is Rietveld 408576698