您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
22 行
310 B
22 行
310 B
#ifndef __SHADERBASE_H__
|
|
#define __SHADERBASE_H__
|
|
|
|
|
|
#define __HLSL 1
|
|
#define public
|
|
|
|
|
|
#define Vec2 float2
|
|
#define Vec3 float3
|
|
#define Vec4 float4
|
|
#define Mat44 float4x4
|
|
#define unistruct cbuffer
|
|
#define hbool bool
|
|
|
|
#define _CB_REGSLOT(x) : register(x)
|
|
#define _QALIGN(x) : packoffset(c0);
|
|
|
|
|
|
|
|
|
|
#endif
|