You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
MineClone/shaders/skybox.frag

11 lines
231 B

#version 450
// vim: ft=c
layout(binding = 1) uniform samplerCube combined_image;
layout(location = 0) out vec4 outColor;
layout(location = 0) in vec4 pos_pre;
void main() { outColor = texture(combined_image, vec3(pos_pre)); }