8 lines
183 B
Plaintext
8 lines
183 B
Plaintext
|
#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
|