mirror of
https://github.com/bevyengine/bevy
synced 2024-11-22 04:33:37 +00:00
Expose wgpu's StencilOperation with bevy (#2819)
# Objective Bevy should expose all wgpu types needed for building rendering pipelines. Closes #2818 ## Solution Add wgpu's StencilOperation to bevy_render2::render_resource's export.
This commit is contained in:
parent
11b41206eb
commit
52fd626fed
1 changed files with 4 additions and 4 deletions
|
@ -26,8 +26,8 @@ pub use wgpu::{
|
|||
PipelineLayoutDescriptor, PolygonMode, PrimitiveState, PrimitiveTopology,
|
||||
RenderPassColorAttachment, RenderPassDepthStencilAttachment, RenderPassDescriptor,
|
||||
RenderPipelineDescriptor, SamplerDescriptor, ShaderFlags, ShaderModule, ShaderModuleDescriptor,
|
||||
ShaderSource, ShaderStage, StencilFaceState, StencilState, StorageTextureAccess, TextureAspect,
|
||||
TextureDescriptor, TextureDimension, TextureFormat, TextureSampleType, TextureUsage,
|
||||
TextureViewDescriptor, TextureViewDimension, VertexAttribute, VertexBufferLayout, VertexFormat,
|
||||
VertexState,
|
||||
ShaderSource, ShaderStage, StencilFaceState, StencilOperation, StencilState,
|
||||
StorageTextureAccess, TextureAspect, TextureDescriptor, TextureDimension, TextureFormat,
|
||||
TextureSampleType, TextureUsage, TextureViewDescriptor, TextureViewDimension, VertexAttribute,
|
||||
VertexBufferLayout, VertexFormat, VertexState,
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue