mirror of
https://gitlab.winehq.org/wine/vkd3d.git
synced 2024-11-21 16:46:41 -08:00
19c23ca6f2
Probably good if we want to allow specifying several formats in the same line, separated by spaces. While at it, rename "r32g32 int" to "r32g32-sint".
20 lines
311 B
Plaintext
20 lines
311 B
Plaintext
[require]
|
|
shader model >= 4.1
|
|
|
|
|
|
[srv 0]
|
|
format r32g32b32a32-float
|
|
size (2dms, 4, 2, 2)
|
|
|
|
[pixel shader todo]
|
|
Texture2DMS<float4, 2> t;
|
|
|
|
float4 main() : sv_target
|
|
{
|
|
return float4(t.GetSamplePosition(0), t.GetSamplePosition(1));
|
|
}
|
|
|
|
[test]
|
|
todo(sm<6) draw quad
|
|
probe (0, 0) rgba (-0.125, -0.375, 0.375, -0.125)
|