Diff
Modified: trunk/Source/WebGPU/ChangeLog (290258 => 290259)
--- trunk/Source/WebGPU/ChangeLog 2022-02-21 19:58:46 UTC (rev 290258)
+++ trunk/Source/WebGPU/ChangeLog 2022-02-21 20:03:53 UTC (rev 290259)
@@ -1,5 +1,62 @@
2022-02-21 Myles C. Maxfield <[email protected]>
+ [WebGPU] Tracer bullet part 7: Clean up includes a bit
+ https://bugs.webkit.org/show_bug.cgi?id=236900
+
+ Reviewed by Dean Jackson.
+
+ We can put includes that literally every file uses into a single place.
+
+ * WebGPU/Adapter.h:
+ * WebGPU/Adapter.mm:
+ * WebGPU/BindGroup.h:
+ * WebGPU/BindGroup.mm:
+ * WebGPU/BindGroupLayout.h:
+ * WebGPU/BindGroupLayout.mm:
+ * WebGPU/Buffer.h:
+ * WebGPU/Buffer.mm:
+ * WebGPU/CommandBuffer.h:
+ * WebGPU/CommandBuffer.mm:
+ * WebGPU/CommandEncoder.h:
+ * WebGPU/CommandEncoder.mm:
+ * WebGPU/ComputePassEncoder.h:
+ * WebGPU/ComputePassEncoder.mm:
+ * WebGPU/ComputePipeline.h:
+ * WebGPU/ComputePipeline.mm:
+ * WebGPU/Device.h:
+ * WebGPU/Device.mm:
+ * WebGPU/Instance.h:
+ * WebGPU/Instance.mm:
+ * WebGPU/PipelineLayout.h:
+ * WebGPU/PipelineLayout.mm:
+ * WebGPU/QuerySet.h:
+ * WebGPU/QuerySet.mm:
+ * WebGPU/Queue.h:
+ * WebGPU/Queue.mm:
+ * WebGPU/RenderBundle.h:
+ * WebGPU/RenderBundle.mm:
+ * WebGPU/RenderBundleEncoder.h:
+ * WebGPU/RenderBundleEncoder.mm:
+ * WebGPU/RenderPassEncoder.h:
+ * WebGPU/RenderPassEncoder.mm:
+ * WebGPU/RenderPipeline.h:
+ * WebGPU/RenderPipeline.mm:
+ * WebGPU/Sampler.h:
+ * WebGPU/Sampler.mm:
+ * WebGPU/ShaderModule.h:
+ * WebGPU/ShaderModule.mm:
+ * WebGPU/Surface.h:
+ * WebGPU/Surface.mm:
+ * WebGPU/SwapChain.h:
+ * WebGPU/SwapChain.mm:
+ * WebGPU/Texture.h:
+ * WebGPU/Texture.mm:
+ * WebGPU/TextureView.h:
+ * WebGPU/TextureView.mm:
+ * WebGPU/config.h:
+
+2022-02-21 Myles C. Maxfield <[email protected]>
+
[WebGPU] Tracer bullet part 6: Give a RunLoop to Instance
https://bugs.webkit.org/show_bug.cgi?id=236899
Modified: trunk/Source/WebGPU/WebGPU/Adapter.h (290258 => 290259)
--- trunk/Source/WebGPU/WebGPU/Adapter.h 2022-02-21 19:58:46 UTC (rev 290258)
+++ trunk/Source/WebGPU/WebGPU/Adapter.h 2022-02-21 20:03:53 UTC (rev 290259)
@@ -25,7 +25,6 @@
#pragma once
-#import "WebGPU.h"
#import <wtf/FastMalloc.h>
#import <wtf/Function.h>
#import <wtf/Ref.h>
Modified: trunk/Source/WebGPU/WebGPU/Adapter.mm (290258 => 290259)
--- trunk/Source/WebGPU/WebGPU/Adapter.mm 2022-02-21 19:58:46 UTC (rev 290258)
+++ trunk/Source/WebGPU/WebGPU/Adapter.mm 2022-02-21 20:03:53 UTC (rev 290259)
@@ -27,7 +27,6 @@
#import "Adapter.h"
#import "Device.h"
-#import "WebGPUExt.h"
#import <wtf/StdLibExtras.h>
namespace WebGPU {
Modified: trunk/Source/WebGPU/WebGPU/BindGroup.h (290258 => 290259)
--- trunk/Source/WebGPU/WebGPU/BindGroup.h 2022-02-21 19:58:46 UTC (rev 290258)
+++ trunk/Source/WebGPU/WebGPU/BindGroup.h 2022-02-21 20:03:53 UTC (rev 290259)
@@ -25,7 +25,6 @@
#pragma once
-#import "WebGPU.h"
#import <wtf/FastMalloc.h>
#import <wtf/Ref.h>
#import <wtf/RefCounted.h>
Modified: trunk/Source/WebGPU/WebGPU/BindGroup.mm (290258 => 290259)
--- trunk/Source/WebGPU/WebGPU/BindGroup.mm 2022-02-21 19:58:46 UTC (rev 290258)
+++ trunk/Source/WebGPU/WebGPU/BindGroup.mm 2022-02-21 20:03:53 UTC (rev 290259)
@@ -27,7 +27,6 @@
#import "BindGroup.h"
#import "Device.h"
-#import "WebGPUExt.h"
namespace WebGPU {
Modified: trunk/Source/WebGPU/WebGPU/BindGroupLayout.h (290258 => 290259)
--- trunk/Source/WebGPU/WebGPU/BindGroupLayout.h 2022-02-21 19:58:46 UTC (rev 290258)
+++ trunk/Source/WebGPU/WebGPU/BindGroupLayout.h 2022-02-21 20:03:53 UTC (rev 290259)
@@ -25,7 +25,6 @@
#pragma once
-#import "WebGPU.h"
#import <wtf/FastMalloc.h>
#import <wtf/Ref.h>
#import <wtf/RefCounted.h>
Modified: trunk/Source/WebGPU/WebGPU/BindGroupLayout.mm (290258 => 290259)
--- trunk/Source/WebGPU/WebGPU/BindGroupLayout.mm 2022-02-21 19:58:46 UTC (rev 290258)
+++ trunk/Source/WebGPU/WebGPU/BindGroupLayout.mm 2022-02-21 20:03:53 UTC (rev 290259)
@@ -27,7 +27,6 @@
#import "BindGroupLayout.h"
#import "Device.h"
-#import "WebGPUExt.h"
namespace WebGPU {
Modified: trunk/Source/WebGPU/WebGPU/Buffer.h (290258 => 290259)
--- trunk/Source/WebGPU/WebGPU/Buffer.h 2022-02-21 19:58:46 UTC (rev 290258)
+++ trunk/Source/WebGPU/WebGPU/Buffer.h 2022-02-21 20:03:53 UTC (rev 290259)
@@ -25,7 +25,6 @@
#pragma once
-#import "WebGPU.h"
#import <wtf/FastMalloc.h>
#import <wtf/Function.h>
#import <wtf/Ref.h>
Modified: trunk/Source/WebGPU/WebGPU/Buffer.mm (290258 => 290259)
--- trunk/Source/WebGPU/WebGPU/Buffer.mm 2022-02-21 19:58:46 UTC (rev 290258)
+++ trunk/Source/WebGPU/WebGPU/Buffer.mm 2022-02-21 20:03:53 UTC (rev 290259)
@@ -27,7 +27,6 @@
#import "Buffer.h"
#import "Device.h"
-#import "WebGPUExt.h"
namespace WebGPU {
Modified: trunk/Source/WebGPU/WebGPU/CommandBuffer.h (290258 => 290259)
--- trunk/Source/WebGPU/WebGPU/CommandBuffer.h 2022-02-21 19:58:46 UTC (rev 290258)
+++ trunk/Source/WebGPU/WebGPU/CommandBuffer.h 2022-02-21 20:03:53 UTC (rev 290259)
@@ -25,7 +25,6 @@
#pragma once
-#import "WebGPU.h"
#import <wtf/FastMalloc.h>
#import <wtf/Ref.h>
#import <wtf/RefCounted.h>
Modified: trunk/Source/WebGPU/WebGPU/CommandBuffer.mm (290258 => 290259)
--- trunk/Source/WebGPU/WebGPU/CommandBuffer.mm 2022-02-21 19:58:46 UTC (rev 290258)
+++ trunk/Source/WebGPU/WebGPU/CommandBuffer.mm 2022-02-21 20:03:53 UTC (rev 290259)
@@ -26,7 +26,6 @@
#import "config.h"
#import "CommandBuffer.h"
-#import "WebGPUExt.h"
namespace WebGPU {
Modified: trunk/Source/WebGPU/WebGPU/CommandEncoder.h (290258 => 290259)
--- trunk/Source/WebGPU/WebGPU/CommandEncoder.h 2022-02-21 19:58:46 UTC (rev 290258)
+++ trunk/Source/WebGPU/WebGPU/CommandEncoder.h 2022-02-21 20:03:53 UTC (rev 290259)
@@ -25,7 +25,6 @@
#pragma once
-#import "WebGPU.h"
#import <wtf/FastMalloc.h>
#import <wtf/Ref.h>
#import <wtf/RefCounted.h>
Modified: trunk/Source/WebGPU/WebGPU/CommandEncoder.mm (290258 => 290259)
--- trunk/Source/WebGPU/WebGPU/CommandEncoder.mm 2022-02-21 19:58:46 UTC (rev 290258)
+++ trunk/Source/WebGPU/WebGPU/CommandEncoder.mm 2022-02-21 20:03:53 UTC (rev 290259)
@@ -32,7 +32,6 @@
#import "Device.h"
#import "QuerySet.h"
#import "RenderPassEncoder.h"
-#import "WebGPUExt.h"
namespace WebGPU {
Modified: trunk/Source/WebGPU/WebGPU/ComputePassEncoder.h (290258 => 290259)
--- trunk/Source/WebGPU/WebGPU/ComputePassEncoder.h 2022-02-21 19:58:46 UTC (rev 290258)
+++ trunk/Source/WebGPU/WebGPU/ComputePassEncoder.h 2022-02-21 20:03:53 UTC (rev 290259)
@@ -25,7 +25,6 @@
#pragma once
-#import "WebGPU.h"
#import <wtf/FastMalloc.h>
#import <wtf/Ref.h>
#import <wtf/RefCounted.h>
Modified: trunk/Source/WebGPU/WebGPU/ComputePassEncoder.mm (290258 => 290259)
--- trunk/Source/WebGPU/WebGPU/ComputePassEncoder.mm 2022-02-21 19:58:46 UTC (rev 290258)
+++ trunk/Source/WebGPU/WebGPU/ComputePassEncoder.mm 2022-02-21 20:03:53 UTC (rev 290259)
@@ -30,7 +30,6 @@
#import "Buffer.h"
#import "ComputePipeline.h"
#import "QuerySet.h"
-#import "WebGPUExt.h"
namespace WebGPU {
Modified: trunk/Source/WebGPU/WebGPU/ComputePipeline.h (290258 => 290259)
--- trunk/Source/WebGPU/WebGPU/ComputePipeline.h 2022-02-21 19:58:46 UTC (rev 290258)
+++ trunk/Source/WebGPU/WebGPU/ComputePipeline.h 2022-02-21 20:03:53 UTC (rev 290259)
@@ -25,7 +25,6 @@
#pragma once
-#import "WebGPU.h"
#import <wtf/FastMalloc.h>
#import <wtf/Ref.h>
#import <wtf/RefCounted.h>
Modified: trunk/Source/WebGPU/WebGPU/ComputePipeline.mm (290258 => 290259)
--- trunk/Source/WebGPU/WebGPU/ComputePipeline.mm 2022-02-21 19:58:46 UTC (rev 290258)
+++ trunk/Source/WebGPU/WebGPU/ComputePipeline.mm 2022-02-21 20:03:53 UTC (rev 290259)
@@ -29,7 +29,6 @@
#import "BindGroupLayout.h"
#import "Device.h"
-#import "WebGPUExt.h"
namespace WebGPU {
Modified: trunk/Source/WebGPU/WebGPU/Device.h (290258 => 290259)
--- trunk/Source/WebGPU/WebGPU/Device.h 2022-02-21 19:58:46 UTC (rev 290258)
+++ trunk/Source/WebGPU/WebGPU/Device.h 2022-02-21 20:03:53 UTC (rev 290259)
@@ -25,7 +25,6 @@
#pragma once
-#import "WebGPU.h"
#import <wtf/FastMalloc.h>
#import <wtf/Function.h>
#import <wtf/Ref.h>
Modified: trunk/Source/WebGPU/WebGPU/Device.mm (290258 => 290259)
--- trunk/Source/WebGPU/WebGPU/Device.mm 2022-02-21 19:58:46 UTC (rev 290258)
+++ trunk/Source/WebGPU/WebGPU/Device.mm 2022-02-21 20:03:53 UTC (rev 290259)
@@ -41,7 +41,6 @@
#import "Surface.h"
#import "SwapChain.h"
#import "Texture.h"
-#import "WebGPUExt.h"
#import <wtf/StdLibExtras.h>
namespace WebGPU {
Modified: trunk/Source/WebGPU/WebGPU/Instance.h (290258 => 290259)
--- trunk/Source/WebGPU/WebGPU/Instance.h 2022-02-21 19:58:46 UTC (rev 290258)
+++ trunk/Source/WebGPU/WebGPU/Instance.h 2022-02-21 20:03:53 UTC (rev 290259)
@@ -25,7 +25,6 @@
#pragma once
-#import "WebGPU.h"
#import <Foundation/Foundation.h>
#import <wtf/FastMalloc.h>
#import <wtf/Function.h>
Modified: trunk/Source/WebGPU/WebGPU/Instance.mm (290258 => 290259)
--- trunk/Source/WebGPU/WebGPU/Instance.mm 2022-02-21 19:58:46 UTC (rev 290258)
+++ trunk/Source/WebGPU/WebGPU/Instance.mm 2022-02-21 20:03:53 UTC (rev 290259)
@@ -28,7 +28,6 @@
#import "Adapter.h"
#import "Surface.h"
-#import "WebGPUExt.h"
#import <cstring>
#import <wtf/StdLibExtras.h>
Modified: trunk/Source/WebGPU/WebGPU/PipelineLayout.h (290258 => 290259)
--- trunk/Source/WebGPU/WebGPU/PipelineLayout.h 2022-02-21 19:58:46 UTC (rev 290258)
+++ trunk/Source/WebGPU/WebGPU/PipelineLayout.h 2022-02-21 20:03:53 UTC (rev 290259)
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2021 Apple Inc. All rights reserved.
+ * Copyright (c) 2021-2022 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -25,7 +25,6 @@
#pragma once
-#import "WebGPU.h"
#import <wtf/FastMalloc.h>
#import <wtf/Ref.h>
#import <wtf/RefCounted.h>
Modified: trunk/Source/WebGPU/WebGPU/PipelineLayout.mm (290258 => 290259)
--- trunk/Source/WebGPU/WebGPU/PipelineLayout.mm 2022-02-21 19:58:46 UTC (rev 290258)
+++ trunk/Source/WebGPU/WebGPU/PipelineLayout.mm 2022-02-21 20:03:53 UTC (rev 290259)
@@ -27,7 +27,6 @@
#import "PipelineLayout.h"
#import "Device.h"
-#import "WebGPUExt.h"
namespace WebGPU {
Modified: trunk/Source/WebGPU/WebGPU/QuerySet.h (290258 => 290259)
--- trunk/Source/WebGPU/WebGPU/QuerySet.h 2022-02-21 19:58:46 UTC (rev 290258)
+++ trunk/Source/WebGPU/WebGPU/QuerySet.h 2022-02-21 20:03:53 UTC (rev 290259)
@@ -25,7 +25,6 @@
#pragma once
-#import "WebGPU.h"
#import <wtf/FastMalloc.h>
#import <wtf/Ref.h>
#import <wtf/RefCounted.h>
Modified: trunk/Source/WebGPU/WebGPU/QuerySet.mm (290258 => 290259)
--- trunk/Source/WebGPU/WebGPU/QuerySet.mm 2022-02-21 19:58:46 UTC (rev 290258)
+++ trunk/Source/WebGPU/WebGPU/QuerySet.mm 2022-02-21 20:03:53 UTC (rev 290259)
@@ -27,7 +27,6 @@
#import "QuerySet.h"
#import "Device.h"
-#import "WebGPUExt.h"
namespace WebGPU {
Modified: trunk/Source/WebGPU/WebGPU/Queue.h (290258 => 290259)
--- trunk/Source/WebGPU/WebGPU/Queue.h 2022-02-21 19:58:46 UTC (rev 290258)
+++ trunk/Source/WebGPU/WebGPU/Queue.h 2022-02-21 20:03:53 UTC (rev 290259)
@@ -25,7 +25,6 @@
#pragma once
-#import "WebGPU.h"
#import <wtf/FastMalloc.h>
#import <wtf/Function.h>
#import <wtf/Ref.h>
Modified: trunk/Source/WebGPU/WebGPU/Queue.mm (290258 => 290259)
--- trunk/Source/WebGPU/WebGPU/Queue.mm 2022-02-21 19:58:46 UTC (rev 290258)
+++ trunk/Source/WebGPU/WebGPU/Queue.mm 2022-02-21 20:03:53 UTC (rev 290259)
@@ -28,7 +28,6 @@
#import "Buffer.h"
#import "CommandBuffer.h"
-#import "WebGPUExt.h"
namespace WebGPU {
Modified: trunk/Source/WebGPU/WebGPU/RenderBundle.h (290258 => 290259)
--- trunk/Source/WebGPU/WebGPU/RenderBundle.h 2022-02-21 19:58:46 UTC (rev 290258)
+++ trunk/Source/WebGPU/WebGPU/RenderBundle.h 2022-02-21 20:03:53 UTC (rev 290259)
@@ -25,7 +25,6 @@
#pragma once
-#import "WebGPU.h"
#import <wtf/FastMalloc.h>
#import <wtf/Ref.h>
#import <wtf/RefCounted.h>
Modified: trunk/Source/WebGPU/WebGPU/RenderBundle.mm (290258 => 290259)
--- trunk/Source/WebGPU/WebGPU/RenderBundle.mm 2022-02-21 19:58:46 UTC (rev 290258)
+++ trunk/Source/WebGPU/WebGPU/RenderBundle.mm 2022-02-21 20:03:53 UTC (rev 290259)
@@ -26,7 +26,6 @@
#import "config.h"
#import "RenderBundle.h"
-#import "WebGPUExt.h"
namespace WebGPU {
Modified: trunk/Source/WebGPU/WebGPU/RenderBundleEncoder.h (290258 => 290259)
--- trunk/Source/WebGPU/WebGPU/RenderBundleEncoder.h 2022-02-21 19:58:46 UTC (rev 290258)
+++ trunk/Source/WebGPU/WebGPU/RenderBundleEncoder.h 2022-02-21 20:03:53 UTC (rev 290259)
@@ -25,7 +25,6 @@
#pragma once
-#import "WebGPU.h"
#import <wtf/FastMalloc.h>
#import <wtf/Ref.h>
#import <wtf/RefCounted.h>
Modified: trunk/Source/WebGPU/WebGPU/RenderBundleEncoder.mm (290258 => 290259)
--- trunk/Source/WebGPU/WebGPU/RenderBundleEncoder.mm 2022-02-21 19:58:46 UTC (rev 290258)
+++ trunk/Source/WebGPU/WebGPU/RenderBundleEncoder.mm 2022-02-21 20:03:53 UTC (rev 290259)
@@ -31,7 +31,6 @@
#import "Device.h"
#import "RenderBundle.h"
#import "RenderPipeline.h"
-#import "WebGPUExt.h"
namespace WebGPU {
Modified: trunk/Source/WebGPU/WebGPU/RenderPassEncoder.h (290258 => 290259)
--- trunk/Source/WebGPU/WebGPU/RenderPassEncoder.h 2022-02-21 19:58:46 UTC (rev 290258)
+++ trunk/Source/WebGPU/WebGPU/RenderPassEncoder.h 2022-02-21 20:03:53 UTC (rev 290259)
@@ -25,7 +25,6 @@
#pragma once
-#import "WebGPU.h"
#import <wtf/FastMalloc.h>
#import <wtf/Function.h>
#import <wtf/Ref.h>
Modified: trunk/Source/WebGPU/WebGPU/RenderPassEncoder.mm (290258 => 290259)
--- trunk/Source/WebGPU/WebGPU/RenderPassEncoder.mm 2022-02-21 19:58:46 UTC (rev 290258)
+++ trunk/Source/WebGPU/WebGPU/RenderPassEncoder.mm 2022-02-21 20:03:53 UTC (rev 290259)
@@ -31,7 +31,6 @@
#import "QuerySet.h"
#import "RenderBundle.h"
#import "RenderPipeline.h"
-#import "WebGPUExt.h"
namespace WebGPU {
Modified: trunk/Source/WebGPU/WebGPU/RenderPipeline.h (290258 => 290259)
--- trunk/Source/WebGPU/WebGPU/RenderPipeline.h 2022-02-21 19:58:46 UTC (rev 290258)
+++ trunk/Source/WebGPU/WebGPU/RenderPipeline.h 2022-02-21 20:03:53 UTC (rev 290259)
@@ -25,7 +25,6 @@
#pragma once
-#import "WebGPU.h"
#import <wtf/FastMalloc.h>
#import <wtf/Ref.h>
#import <wtf/RefCounted.h>
Modified: trunk/Source/WebGPU/WebGPU/RenderPipeline.mm (290258 => 290259)
--- trunk/Source/WebGPU/WebGPU/RenderPipeline.mm 2022-02-21 19:58:46 UTC (rev 290258)
+++ trunk/Source/WebGPU/WebGPU/RenderPipeline.mm 2022-02-21 20:03:53 UTC (rev 290259)
@@ -28,7 +28,6 @@
#import "BindGroupLayout.h"
#import "Device.h"
-#import "WebGPUExt.h"
namespace WebGPU {
Modified: trunk/Source/WebGPU/WebGPU/Sampler.h (290258 => 290259)
--- trunk/Source/WebGPU/WebGPU/Sampler.h 2022-02-21 19:58:46 UTC (rev 290258)
+++ trunk/Source/WebGPU/WebGPU/Sampler.h 2022-02-21 20:03:53 UTC (rev 290259)
@@ -25,7 +25,6 @@
#pragma once
-#import "WebGPU.h"
#import <wtf/FastMalloc.h>
#import <wtf/Ref.h>
#import <wtf/RefCounted.h>
Modified: trunk/Source/WebGPU/WebGPU/Sampler.mm (290258 => 290259)
--- trunk/Source/WebGPU/WebGPU/Sampler.mm 2022-02-21 19:58:46 UTC (rev 290258)
+++ trunk/Source/WebGPU/WebGPU/Sampler.mm 2022-02-21 20:03:53 UTC (rev 290259)
@@ -27,7 +27,6 @@
#import "Sampler.h"
#import "Device.h"
-#import "WebGPUExt.h"
namespace WebGPU {
Modified: trunk/Source/WebGPU/WebGPU/ShaderModule.h (290258 => 290259)
--- trunk/Source/WebGPU/WebGPU/ShaderModule.h 2022-02-21 19:58:46 UTC (rev 290258)
+++ trunk/Source/WebGPU/WebGPU/ShaderModule.h 2022-02-21 20:03:53 UTC (rev 290259)
@@ -25,7 +25,6 @@
#pragma once
-#import "WebGPU.h"
#import <wtf/FastMalloc.h>
#import <wtf/Ref.h>
#import <wtf/RefCounted.h>
Modified: trunk/Source/WebGPU/WebGPU/ShaderModule.mm (290258 => 290259)
--- trunk/Source/WebGPU/WebGPU/ShaderModule.mm 2022-02-21 19:58:46 UTC (rev 290258)
+++ trunk/Source/WebGPU/WebGPU/ShaderModule.mm 2022-02-21 20:03:53 UTC (rev 290259)
@@ -27,7 +27,6 @@
#import "ShaderModule.h"
#import "Device.h"
-#import "WebGPUExt.h"
namespace WebGPU {
Modified: trunk/Source/WebGPU/WebGPU/Surface.h (290258 => 290259)
--- trunk/Source/WebGPU/WebGPU/Surface.h 2022-02-21 19:58:46 UTC (rev 290258)
+++ trunk/Source/WebGPU/WebGPU/Surface.h 2022-02-21 20:03:53 UTC (rev 290259)
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2021 Apple Inc. All rights reserved.
+ * Copyright (c) 2021-2022 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -25,7 +25,6 @@
#pragma once
-#import "WebGPU.h"
#import <wtf/FastMalloc.h>
#import <wtf/Ref.h>
#import <wtf/RefCounted.h>
Modified: trunk/Source/WebGPU/WebGPU/Surface.mm (290258 => 290259)
--- trunk/Source/WebGPU/WebGPU/Surface.mm 2022-02-21 19:58:46 UTC (rev 290258)
+++ trunk/Source/WebGPU/WebGPU/Surface.mm 2022-02-21 20:03:53 UTC (rev 290259)
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2021 Apple Inc. All rights reserved.
+ * Copyright (c) 2021-2022 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -27,7 +27,6 @@
#import "Surface.h"
#import "Adapter.h"
-#import "WebGPUExt.h"
namespace WebGPU {
Modified: trunk/Source/WebGPU/WebGPU/SwapChain.h (290258 => 290259)
--- trunk/Source/WebGPU/WebGPU/SwapChain.h 2022-02-21 19:58:46 UTC (rev 290258)
+++ trunk/Source/WebGPU/WebGPU/SwapChain.h 2022-02-21 20:03:53 UTC (rev 290259)
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2021 Apple Inc. All rights reserved.
+ * Copyright (c) 2021-2022 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -25,7 +25,6 @@
#pragma once
-#import "WebGPU.h"
#import <wtf/FastMalloc.h>
#import <wtf/Ref.h>
#import <wtf/RefCounted.h>
Modified: trunk/Source/WebGPU/WebGPU/SwapChain.mm (290258 => 290259)
--- trunk/Source/WebGPU/WebGPU/SwapChain.mm 2022-02-21 19:58:46 UTC (rev 290258)
+++ trunk/Source/WebGPU/WebGPU/SwapChain.mm 2022-02-21 20:03:53 UTC (rev 290259)
@@ -28,7 +28,6 @@
#import "Device.h"
#import "TextureView.h"
-#import "WebGPUExt.h"
namespace WebGPU {
Modified: trunk/Source/WebGPU/WebGPU/Texture.h (290258 => 290259)
--- trunk/Source/WebGPU/WebGPU/Texture.h 2022-02-21 19:58:46 UTC (rev 290258)
+++ trunk/Source/WebGPU/WebGPU/Texture.h 2022-02-21 20:03:53 UTC (rev 290259)
@@ -25,7 +25,6 @@
#pragma once
-#import "WebGPU.h"
#import <wtf/FastMalloc.h>
#import <wtf/Ref.h>
#import <wtf/RefCounted.h>
Modified: trunk/Source/WebGPU/WebGPU/Texture.mm (290258 => 290259)
--- trunk/Source/WebGPU/WebGPU/Texture.mm 2022-02-21 19:58:46 UTC (rev 290258)
+++ trunk/Source/WebGPU/WebGPU/Texture.mm 2022-02-21 20:03:53 UTC (rev 290259)
@@ -28,7 +28,6 @@
#import "Device.h"
#import "TextureView.h"
-#import "WebGPUExt.h"
namespace WebGPU {
Modified: trunk/Source/WebGPU/WebGPU/TextureView.h (290258 => 290259)
--- trunk/Source/WebGPU/WebGPU/TextureView.h 2022-02-21 19:58:46 UTC (rev 290258)
+++ trunk/Source/WebGPU/WebGPU/TextureView.h 2022-02-21 20:03:53 UTC (rev 290259)
@@ -25,7 +25,6 @@
#pragma once
-#import "WebGPU.h"
#import <wtf/FastMalloc.h>
#import <wtf/Ref.h>
#import <wtf/RefCounted.h>
Modified: trunk/Source/WebGPU/WebGPU/TextureView.mm (290258 => 290259)
--- trunk/Source/WebGPU/WebGPU/TextureView.mm 2022-02-21 19:58:46 UTC (rev 290258)
+++ trunk/Source/WebGPU/WebGPU/TextureView.mm 2022-02-21 20:03:53 UTC (rev 290259)
@@ -26,7 +26,6 @@
#import "config.h"
#import "TextureView.h"
-#import "WebGPUExt.h"
namespace WebGPU {
Modified: trunk/Source/WebGPU/WebGPU/config.h (290258 => 290259)
--- trunk/Source/WebGPU/WebGPU/config.h 2022-02-21 19:58:46 UTC (rev 290258)
+++ trunk/Source/WebGPU/WebGPU/config.h 2022-02-21 20:03:53 UTC (rev 290259)
@@ -25,6 +25,9 @@
#include "ExportMacros.h"
+#include "WebGPU.h"
+#include "WebGPUExt.h"
+
#include <Metal/Metal.h>
#include <wtf/Assertions.h>