mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
5500435d2f
This reverts commit 446d93dda0
.
20 lines
263 B
GLSL
20 lines
263 B
GLSL
#version 420 core
|
|
|
|
#include <globals.glsl>
|
|
|
|
layout (location = 0)
|
|
in vec4 f_color;
|
|
|
|
layout (std140, set = 1, binding = 0)
|
|
uniform u_locals {
|
|
vec4 w_pos;
|
|
vec4 w_color;
|
|
};
|
|
|
|
layout (location = 0)
|
|
out vec4 tgt_color;
|
|
|
|
void main() {
|
|
tgt_color = f_color;
|
|
}
|