mirror of
https://github.com/w23/xash3d-fwgs
synced 2025-01-05 16:35:56 +01:00
e49591652f
also switch to non-srgb framebuffer and remove a bunch of verbose log messages
13 lines
227 B
GLSL
13 lines
227 B
GLSL
#version 450
|
|
|
|
layout(set=0,binding=0) uniform sampler2D tex;
|
|
|
|
layout(location=0) in vec2 vUv;
|
|
layout(location=1) in vec4 vColor;
|
|
|
|
layout(location = 0) out vec4 outColor;
|
|
|
|
void main() {
|
|
outColor = texture(tex, vUv) * vColor;
|
|
}
|