1Texture2D g_tTex2df4; 2 3float4 main() : SV_Target0 4{ 5 g_tTex2df4.r[2][uint2(3, 4)]; // '.r' not valid on texture object 6 7 return 0; 8} 9 10