mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-12-26 15:06:22 +01:00
13 lines
263 B
HLSL
13 lines
263 B
HLSL
#ifndef __COMMONVS_HLSL__
|
|
#define __COMMONVS_HLSL__
|
|
|
|
#define MATRIX_WORLD 0
|
|
#define MATRIX_WORLD_VIEW 1
|
|
#define MATRIX_WORLD_VIEW_PROJECTION 2
|
|
|
|
cbuffer Matrices : register(b0)
|
|
{
|
|
float4x4 gm_Matrices[3];
|
|
};
|
|
|
|
#endif // __COMMONVS_HLSL__
|