From 29a76f75c4effec8d2c8b6e451ba4a87881dc341 Mon Sep 17 00:00:00 2001 From: Stephen Gutekanst Date: Fri, 11 Mar 2022 14:29:25 -0700 Subject: [PATCH] gpu: remove WGPUDeviceProperties TODO Signed-off-by: Stephen Gutekanst --- gpu/src/TODO | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/gpu/src/TODO b/gpu/src/TODO index 7c9eee16..99a2ed65 100644 --- a/gpu/src/TODO +++ b/gpu/src/TODO @@ -451,27 +451,6 @@ typedef struct WGPUVertexBufferLayout { WGPUVertexAttribute const * attributes; } WGPUVertexBufferLayout; -typedef struct WGPUDeviceProperties { - uint32_t deviceID; - uint32_t vendorID; - WGPUAdapterType adapterType; - bool textureCompressionBC; - bool textureCompressionETC2; - bool textureCompressionASTC; - bool shaderFloat16; - bool pipelineStatisticsQuery; - bool timestampQuery; - bool multiPlanarFormats; - bool depthClamping; - bool depth24UnormStencil8; - bool depth32FloatStencil8; - bool invalidFeature; - bool dawnInternalUsages; - bool dawnNative; - WGPUSupportedLimits limits; -} WGPUDeviceProperties; - - typedef void (*WGPUBufferMapCallback)(WGPUBufferMapAsyncStatus status, void * userdata);