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.
|
Texture2D g_tTex2df4;
|
|
|
|
float4 main() : SV_Target0
|
|
{
|
|
g_tTex2df4.r[2][uint2(3, 4)]; // '.r' not valid on texture object
|
|
|
|
return 0;
|
|
}
|
|
|