Bug 74077

Summary: REGRESSION(r101683): QQuickWebView doesn't work with OpenGL/ES 2.0
Product: WebKit Reporter: Simon Hausmann <hausmann>
Component: PlatformAssignee: Nobody <webkit-unassigned>
Status: RESOLVED FIXED    
Severity: Normal CC: abecsi, donald.carr, noam, ostap73, webkit.review.bot, zoltan
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: Unspecified   
OS: Unspecified   
Attachments:
Description Flags
REGRESSION(r101683): QQuickWebView doesn't work with OpenGL/ES 2.0 kenneth: review+

Description Simon Hausmann 2011-12-08 04:57:27 PST
The vertex shader in PageProxyMaterialShader uses the built-in "gl_Vertex" attribute, which is not part of OpenGL/ES 2.0
Comment 1 Simon Hausmann 2011-12-08 05:09:16 PST
Created attachment 118366 [details]
REGRESSION(r101683): QQuickWebView doesn't work with OpenGL/ES 2.0
Comment 2 Kenneth Rohde Christiansen 2011-12-08 05:13:14 PST
Comment on attachment 118366 [details]
REGRESSION(r101683): QQuickWebView doesn't work with OpenGL/ES 2.0

View in context: https://bugs.webkit.org/attachment.cgi?id=118366&action=review

rs=me

> Source/WebKit2/UIProcess/API/qt/qquickwebpage.cpp:239
> +        return
> +               "attribute highp vec4 vertex; \n"
> +                "void main() { gl_Position = vertex; }";

why 3 lines?
Comment 3 Simon Hausmann 2011-12-08 07:27:44 PST
*** Bug 74073 has been marked as a duplicate of this bug. ***
Comment 4 Simon Hausmann 2011-12-08 07:31:36 PST
Committed r102337: <http://trac.webkit.org/changeset/102337>