From 2fd10470453905395ba3773036b6bdf2634e1996 Mon Sep 17 00:00:00 2001 From: Connor Fitzgerald Date: Fri, 26 Mar 2021 15:51:11 -0400 Subject: [PATCH] [rs] Add missing re-exports --- wgpu/src/lib.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/wgpu/src/lib.rs b/wgpu/src/lib.rs index f7fbae245..e39959a3d 100644 --- a/wgpu/src/lib.rs +++ b/wgpu/src/lib.rs @@ -34,10 +34,10 @@ pub use wgt::{ PrimitiveState, PrimitiveTopology, PushConstantRange, QuerySetDescriptor, QueryType, SamplerBorderColor, ShaderFlags, ShaderLocation, ShaderStage, StencilFaceState, StencilOperation, StencilState, StorageTextureAccess, SwapChainDescriptor, SwapChainStatus, - TextureAspect, TextureDimension, TextureFormat, TextureSampleType, TextureUsage, - TextureViewDimension, VertexAttribute, VertexFormat, BIND_BUFFER_ALIGNMENT, - COPY_BUFFER_ALIGNMENT, COPY_BYTES_PER_ROW_ALIGNMENT, PUSH_CONSTANT_ALIGNMENT, - QUERY_SET_MAX_QUERIES, QUERY_SIZE, VERTEX_STRIDE_ALIGNMENT, + TextureAspect, TextureDimension, TextureFormat, TextureFormatFeatureFlags, + TextureFormatFeatures, TextureSampleType, TextureUsage, TextureViewDimension, VertexAttribute, + VertexFormat, BIND_BUFFER_ALIGNMENT, COPY_BUFFER_ALIGNMENT, COPY_BYTES_PER_ROW_ALIGNMENT, + PUSH_CONSTANT_ALIGNMENT, QUERY_SET_MAX_QUERIES, QUERY_SIZE, VERTEX_STRIDE_ALIGNMENT, }; use backend::{BufferMappedRange, Context as C};