RESOLVED FIXED 94358
[CSS Shaders] Get rid of internal tex coord attribute
https://bugs.webkit.org/show_bug.cgi?id=94358
Summary [CSS Shaders] Get rid of internal tex coord attribute
Max Vujovic
Reported 2012-08-17 10:00:32 PDT
We should get rid of the internal tex coord attribute "css_a_texCoord" that we needed to introduce in bug 93869. If the author defines "a_texCoord", we should leverage that. If not, we should add "a_texCoord" to the shader. This requires us to first get the list of attributes from the vertex shader using ANGLE.
Attachments
Patch (15.09 KB, patch)
2012-10-30 14:43 PDT, Max Vujovic
gtk-ews: commit-queue-
Patch (15.09 KB, patch)
2012-10-30 16:57 PDT, Max Vujovic
no flags
Patch (15.36 KB, patch)
2012-10-31 15:04 PDT, Max Vujovic
no flags
Max Vujovic
Comment 1 2012-10-30 14:43:37 PDT
kov's GTK+ EWS bot
Comment 2 2012-10-30 15:35:30 PDT
Max Vujovic
Comment 3 2012-10-30 16:57:57 PDT
Created attachment 171552 [details] Patch Trying the GTK bot again with the same patch. The failure seems unrelated to this patch's contents: """ Failed to create file 'Programs/resources/webkit2gtk-tests-resourcFailed to run "['Tools/Scripts/build-webkit', '--release', '--gtk', '--update-gtk', '--makeargs="-j8"']" exit_code: 2 """
Alexandru Chiculita
Comment 4 2012-10-31 11:40:51 PDT
Comment on attachment 171552 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=171552&action=review Looks good! > Source/WebCore/platform/graphics/filters/CustomFilterValidatedProgram.cpp:212 > + if (!texCoordAttributeDefined) > + m_validatedVertexShader.append("attribute mediump vec2 a_texCoord;"); Add a comment explaining that a_texCoord is read-only and that even if we reuse the same one that the user had access to, it's not going to change.
Max Vujovic
Comment 5 2012-10-31 15:04:15 PDT
Max Vujovic
Comment 6 2012-10-31 15:06:26 PDT
Thanks for looking at this! (In reply to comment #4) > (From update of attachment 171552 [details]) > View in context: https://bugs.webkit.org/attachment.cgi?id=171552&action=review > > Looks good! > > > Source/WebCore/platform/graphics/filters/CustomFilterValidatedProgram.cpp:212 > > + if (!texCoordAttributeDefined) > > + m_validatedVertexShader.append("attribute mediump vec2 a_texCoord;"); > > Add a comment explaining that a_texCoord is read-only and that even if we reuse the same one that the user had access to, it's not going to change. Done.
WebKit Review Bot
Comment 7 2012-11-01 16:59:22 PDT
Comment on attachment 171728 [details] Patch Clearing flags on attachment: 171728 Committed r133241: <http://trac.webkit.org/changeset/133241>
WebKit Review Bot
Comment 8 2012-11-01 16:59:26 PDT
All reviewed patches have been landed. Closing bug.
Note You need to log in before you can comment on or make changes to this bug.