Title: [292574] trunk/Source/WebGPU
Revision
292574
Author
mmaxfi...@apple.com
Date
2022-04-07 15:50:19 -0700 (Thu, 07 Apr 2022)

Log Message

[WebGPU] Add support for the "is valid to use with" operation to WebGPU objects
https://bugs.webkit.org/show_bug.cgi?id=238719

Addressing post-review comment.

Unreviewed.

* WebGPU/IsValidToUseWith.h:
(WebGPU::isValidToUseWith):
(WebGPU::isValidToUseWith const): Deleted.

Modified Paths

Diff

Modified: trunk/Source/WebGPU/ChangeLog (292573 => 292574)


--- trunk/Source/WebGPU/ChangeLog	2022-04-07 22:44:09 UTC (rev 292573)
+++ trunk/Source/WebGPU/ChangeLog	2022-04-07 22:50:19 UTC (rev 292574)
@@ -1,5 +1,18 @@
 2022-04-07  Myles C. Maxfield  <mmaxfi...@apple.com>
 
+        [WebGPU] Add support for the "is valid to use with" operation to WebGPU objects
+        https://bugs.webkit.org/show_bug.cgi?id=238719
+
+        Addressing post-review comment.
+
+        Unreviewed.
+
+        * WebGPU/IsValidToUseWith.h:
+        (WebGPU::isValidToUseWith):
+        (WebGPU::isValidToUseWith const): Deleted.
+
+2022-04-07  Myles C. Maxfield  <mmaxfi...@apple.com>
+
         [WebGPU] Give objects a notion of invalidity
         https://bugs.webkit.org/show_bug.cgi?id=238720
 

Modified: trunk/Source/WebGPU/WebGPU/IsValidToUseWith.h (292573 => 292574)


--- trunk/Source/WebGPU/WebGPU/IsValidToUseWith.h	2022-04-07 22:44:09 UTC (rev 292573)
+++ trunk/Source/WebGPU/WebGPU/IsValidToUseWith.h	2022-04-07 22:50:19 UTC (rev 292574)
@@ -28,7 +28,7 @@
 namespace WebGPU {
 
 template <typename T, typename U>
-bool isValidToUseWith(const T& object, const U& targetObject) const
+bool isValidToUseWith(const T& object, const U& targetObject)
 {
     // https://gpuweb.github.io/gpuweb/#abstract-opdef-valid-to-use-with
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to