change shader properties to be vg_msg based
[carveJwlIkooP6JGAAIwe30JlM.git] / shaders / scene_depth.h
1 #pragma once
2 #include "vg/vg_engine.h"
3 extern struct vg_shader _shader_scene_depth;
4 extern GLuint _uniform_scene_depth_uMdl;
5 extern GLuint _uniform_scene_depth_uPv;
6 extern GLuint _uniform_scene_depth_uPvmPrev;
7 extern GLuint _uniform_scene_depth_uCamera;
8 extern GLuint _uniform_scene_depth_uBoard0;
9 extern GLuint _uniform_scene_depth_uBoard1;
10 extern GLuint _uniform_scene_depth_g_world_depth;
11 extern GLuint _uniform_scene_depth_uLightsArray;
12 extern GLuint _uniform_scene_depth_uLightsIndex;
13 static inline void shader_scene_depth_uMdl(m4x3f m)
14 {
15 glUniformMatrix4x3fv(_uniform_scene_depth_uMdl,1,GL_FALSE,(f32*)m);
16 }
17 static inline void shader_scene_depth_uPv(m4x4f m)
18 {
19 glUniformMatrix4fv(_uniform_scene_depth_uPv,1,GL_FALSE,(f32*)m);
20 }
21 static inline void shader_scene_depth_uPvmPrev(m4x4f m)
22 {
23 glUniformMatrix4fv(_uniform_scene_depth_uPvmPrev,1,GL_FALSE,(f32*)m);
24 }
25 static inline void shader_scene_depth_uCamera(v3f v)
26 {
27 glUniform3fv(_uniform_scene_depth_uCamera,1,v);
28 }
29 static inline void shader_scene_depth_uBoard0(v3f v)
30 {
31 glUniform3fv(_uniform_scene_depth_uBoard0,1,v);
32 }
33 static inline void shader_scene_depth_uBoard1(v3f v)
34 {
35 glUniform3fv(_uniform_scene_depth_uBoard1,1,v);
36 }
37 static inline void shader_scene_depth_g_world_depth(int i)
38 {
39 glUniform1i(_uniform_scene_depth_g_world_depth,i);
40 }
41 static inline void shader_scene_depth_use(void);
42 static inline void shader_scene_depth_use(void)
43 {
44 glUseProgram(_shader_scene_depth.id);
45 }