engine/assets/shaders/camera.glsl

10 lines
146 B
GLSL

#ifndef CAMERA_GLSL
#define CAMERA_GLSL
layout(std140, binding = 0) uniform Matrices {
mat4 projection;
mat4 view;
};
#endif // CAMERA_GLSL