8 lines
183 B
GLSL
8 lines
183 B
GLSL
#ifndef CAMERA_INCLUDED
|
|
#define CAMERA_INCLUDED
|
|
|
|
uniform mat4 u_view; // world space -> view space
|
|
uniform mat4 u_projection; // view space -> screen space
|
|
|
|
#endif // CAMERA_INCLUDED
|