16 lines
223 B
C++
16 lines
223 B
C++
#ifndef TEXTUREDEBUGUBO
|
|
#define TEXTUREDEBUGUBO
|
|
|
|
|
|
#include <GLMIncludes.h>
|
|
|
|
struct TextureDebugUBO
|
|
{
|
|
glm::mat4 view;
|
|
glm::mat4 proj;
|
|
uint32_t shadow_idx;
|
|
glm::vec3 padding0;
|
|
};
|
|
|
|
#endif /* TEXTUREDEBUGUBO */
|