mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-11-22 14:55:05 +00:00
10 lines
235 B
GLSL
10 lines
235 B
GLSL
#version 460 core
|
|
|
|
layout(set = 0, binding = 0) uniform textureCube texCube;
|
|
layout(set = 0, binding = 1) uniform sampler samp;
|
|
|
|
void main() {
|
|
ivec2 sizeCube = textureSize(samplerCube(texCube, samp), 0);
|
|
float a = ceil(1.0);
|
|
}
|