Skip to content

Instantly share code, notes, and snippets.

@porky11
Created August 11, 2019 06:41
Show Gist options
  • Save porky11/bbbd503816bf197056dd533e2253ac45 to your computer and use it in GitHub Desktop.
Save porky11/bbbd503816bf197056dd533e2253ac45 to your computer and use it in GitHub Desktop.
Binding a texture as image3D in wgpu using scopes
local layout-bindings =
arrayof wgpu.BindGroupLayoutBinding
typeinit
binding = 0
visibility = wgpu.ShaderStage.COMPUTE
ty = wgpu.BindingType.StorageTexture
let size = 0x10
let texture =
wgpu.Texture device
local wgpu.TextureDescriptor
size =
wgpu.Extent3d size size size
array_layer_count = 1
mip_level_count = 0
sample_count = 1
dimension = wgpu.TextureDimension.D3
format = wgpu.TextureFormat.R32Float
usage = wgpu.TextureUsage.STORAGE
local bindings =
arrayof wgpu.BindGroupBinding
typeinit
binding = 0
resource =
wgpu.BindingResource.TextureView
wgpu.TextureView texture
let bind-group =
wgpu.BindGroup device
local wgpu.BindGroupDescriptor
layout = bind-group-layout
bindings = bindings
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment