mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2025-01-14 16:26:30 +01:00
13 lines
282 B
Text
13 lines
282 B
Text
|
// GameMaker reserved and common types/inputs
|
||
|
|
||
|
Texture2D gm_BaseTextureObject : register(t0);
|
||
|
SamplerState gm_BaseTexture : register(S0);
|
||
|
|
||
|
cbuffer gm_PSMaterialConstantBuffer
|
||
|
{
|
||
|
bool gm_PS_FogEnabled;
|
||
|
float4 gm_FogColour;
|
||
|
bool gm_AlphaTestEnabled;
|
||
|
float4 gm_AlphaRefValue;
|
||
|
};
|