@group(0) @binding(0) var my_texture: texture_2d; @group(0) @binding(1) var my_sampler: sampler; @fragment fn main( @location(0) texture_coord: vec2 ) -> @location(0) vec4 { return textureSample(my_texture, my_sampler, texture_coord); }