You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
253 B
16 lines
253 B
4 months ago
|
SamplerState g_sSamp : register(s1);
|
||
|
|
||
|
Texture1D <float4> g_tTex1df4 : register(t0);
|
||
|
|
||
|
SamplerState g_sSamp2_amb;
|
||
|
uniform float floatval_amb;
|
||
|
|
||
|
Buffer<float> floatbuff;
|
||
|
|
||
|
float4 main() : SV_Target0
|
||
|
{
|
||
|
g_sSamp2_amb;
|
||
|
|
||
|
return 0;
|
||
|
}
|