RESOLVED FIXED 113034
[GTK] Include the right GL header for GLES2
https://bugs.webkit.org/show_bug.cgi?id=113034
Summary [GTK] Include the right GL header for GLES2
Mario Sanchez Prada
Reported 2013-03-22 02:52:28 PDT
It's currently an issue in the following two files: Source/WebKit/gtk/WebCoreSupport/AcceleratedCompositingContextGL.cpp Source/WebKit2/WebProcess/WebPage/gtk/LayerTreeHostGtk.cpp Patch will follow
Attachments
Patch proposal (2.67 KB, patch)
2013-03-22 03:10 PDT, Mario Sanchez Prada
mrobinson: review+
mrobinson: commit-queue-
Mario Sanchez Prada
Comment 1 2013-03-22 03:10:21 PDT
Created attachment 194494 [details] Patch proposal Here comes the patch
Martin Robinson
Comment 2 2013-03-22 07:10:50 PDT
Comment on attachment 194494 [details] Patch proposal Do you mind moving the conditional includes to separate block below from the main section? For instance: #include "stuff.h" #include <a.h> #include <b.h> #if USE(OPENGL_ES_2) #include <c.h> #else #include <d.h> #endif
Mario Sanchez Prada
Comment 3 2013-03-22 11:40:05 PDT
(In reply to comment #2) > (From update of attachment 194494 [details]) > Do you mind moving the conditional includes to separate block below from > the main section? Not a problem at all, I'll do it. Thanks
Mario Sanchez Prada
Comment 4 2013-03-22 11:50:03 PDT
Note You need to log in before you can comment on or make changes to this bug.