Title: [235387] trunk/Tools
Revision
235387
Author
[email protected]
Date
2018-08-27 11:22:50 -0700 (Mon, 27 Aug 2018)

Log Message

Avoid an exception in the interactive interpreter
https://bugs.webkit.org/show_bug.cgi?id=188991

Patch by Thomas Denney <[email protected]> on 2018-08-27
Reviewed by Myles C. Maxfield.

* WebGPUShadingLanguageRI/index.html: Corrects a typo in the name of a
local variable

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (235386 => 235387)


--- trunk/Tools/ChangeLog	2018-08-27 18:22:06 UTC (rev 235386)
+++ trunk/Tools/ChangeLog	2018-08-27 18:22:50 UTC (rev 235387)
@@ -1,5 +1,15 @@
 2018-08-27  Thomas Denney  <[email protected]>
 
+        Avoid an exception in the interactive interpreter
+        https://bugs.webkit.org/show_bug.cgi?id=188991
+
+        Reviewed by Myles C. Maxfield.
+
+        * WebGPUShadingLanguageRI/index.html: Corrects a typo in the name of a
+        local variable
+
+2018-08-27  Thomas Denney  <[email protected]>
+
         Allow new vector types to work with the interactive interpreter
         https://bugs.webkit.org/show_bug.cgi?id=188988
 

Modified: trunk/Tools/WebGPUShadingLanguageRI/index.html (235386 => 235387)


--- trunk/Tools/WebGPUShadingLanguageRI/index.html	2018-08-27 18:22:06 UTC (rev 235386)
+++ trunk/Tools/WebGPUShadingLanguageRI/index.html	2018-08-27 18:22:50 UTC (rev 235387)
@@ -383,7 +383,7 @@
     }
     if (!found)
         linkError("Could not find the stageIn argument in the fragment shader!");
-    if (func.parameters.length > 1)
+    if (currentFragmentShader.parameters.length > 1)
         linkError("Fragment shaders currently don't know how to have any other arguments other than stageIn.");
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to