mirror of
https://github.com/EduApps-CDG/OpenDX
synced 2024-12-30 09:45:37 +01:00
Creating one shader per image view type may help in case we get an already compatible image view from the D3D11 application.
26 lines
476 B
Plaintext
26 lines
476 B
Plaintext
#version 450
|
|
|
|
layout(
|
|
local_size_x = 4,
|
|
local_size_y = 4,
|
|
local_size_z = 4) in;
|
|
|
|
layout(binding = 0)
|
|
writeonly uniform image3D dst;
|
|
|
|
layout(push_constant)
|
|
uniform u_info_t {
|
|
vec4 clear_value;
|
|
ivec4 dst_offset;
|
|
ivec4 dst_extent;
|
|
} u_info;
|
|
|
|
void main() {
|
|
ivec3 thread_id = ivec3(gl_GlobalInvocationID);
|
|
|
|
if (all(lessThan(thread_id.xyz, u_info.dst_extent.xyz))) {
|
|
imageStore(dst,
|
|
u_info.dst_offset.xyz + thread_id.xyz,
|
|
u_info.clear_value);
|
|
}
|
|
} |