Bug 74077 - REGRESSION(r101683): QQuickWebView doesn't work with OpenGL/ES 2.0
Summary: REGRESSION(r101683): QQuickWebView doesn't work with OpenGL/ES 2.0
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: Platform (show other bugs)
Version: 528+ (Nightly build)
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Nobody
URL:
Keywords:
: 74073 (view as bug list)
Depends on:
Blocks:
 
Reported: 2011-12-08 04:57 PST by Simon Hausmann
Modified: 2011-12-08 07:31 PST (History)
6 users (show)

See Also:


Attachments
REGRESSION(r101683): QQuickWebView doesn't work with OpenGL/ES 2.0 (2.23 KB, patch)
2011-12-08 05:09 PST, Simon Hausmann
kenneth: review+
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
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>