Created
August 11, 2019 06:41
-
-
Save porky11/bbbd503816bf197056dd533e2253ac45 to your computer and use it in GitHub Desktop.
Binding a texture as image3D in wgpu using scopes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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