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
)
15 glUniformMatrix4x3fv(_uniform_scene_depth_uMdl
,1,GL_FALSE
,(f32
*)m
);
17 static inline void shader_scene_depth_uPv(m4x4f m
)
19 glUniformMatrix4fv(_uniform_scene_depth_uPv
,1,GL_FALSE
,(f32
*)m
);
21 static inline void shader_scene_depth_uPvmPrev(m4x4f m
)
23 glUniformMatrix4fv(_uniform_scene_depth_uPvmPrev
,1,GL_FALSE
,(f32
*)m
);
25 static inline void shader_scene_depth_uCamera(v3f v
)
27 glUniform3fv(_uniform_scene_depth_uCamera
,1,v
);
29 static inline void shader_scene_depth_uBoard0(v3f v
)
31 glUniform3fv(_uniform_scene_depth_uBoard0
,1,v
);
33 static inline void shader_scene_depth_uBoard1(v3f v
)
35 glUniform3fv(_uniform_scene_depth_uBoard1
,1,v
);
37 static inline void shader_scene_depth_g_world_depth(int i
)
39 glUniform1i(_uniform_scene_depth_g_world_depth
,i
);
41 static inline void shader_scene_depth_use(void);
42 static inline void shader_scene_depth_use(void)
44 glUseProgram(_shader_scene_depth
.id
);