Chromium Code Reviews

Unified Diff: src/gpu/gl/mac/GrGLCreateNativeInterface_mac.cpp

Issue 14461006: Plumbed in discard_framebuffer extension (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Fixed other issues Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: src/gpu/gl/mac/GrGLCreateNativeInterface_mac.cpp
===================================================================
--- src/gpu/gl/mac/GrGLCreateNativeInterface_mac.cpp (revision 8892)
+++ src/gpu/gl/mac/GrGLCreateNativeInterface_mac.cpp (working copy)
@@ -149,6 +149,9 @@
GET_PROC_SUFFIX(TexStorage2D, EXT);
}
GET_PROC(TexSubImage2D);
+ if (extensions.has("GL_EXT_discard_framebuffer")) {
bsalomon 2013/04/29 14:42:15 Does this extension exist on desktop? If not we ca
robertphillips 2013/04/29 15:25:39 As far as I can tell (from looking at the spec and
+ GET_PROC_SUFFIX(DiscardFramebuffer, EXT);
+ }
GET_PROC(Uniform1f);
GET_PROC(Uniform1i);
GET_PROC(Uniform1fv);

Powered by Google App Engine