mirror of
https://gitlab.winehq.org/wine/vkd3d.git
synced 2024-11-21 16:46:41 -08:00
90b4cbc1f2
Signed-off-by: Zebediah Figura <zfigura@codeweavers.com> Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
53 lines
721 B
Plaintext
53 lines
721 B
Plaintext
[input layout]
|
|
0 r32g32b32a32 float texcoord
|
|
0 r32g32 float sv_position
|
|
|
|
[vertex buffer 0]
|
|
0.0 1.0 0.0 1.0 -2.0 -2.0
|
|
0.0 1.0 0.0 1.0 -2.0 2.0
|
|
0.0 1.0 0.0 1.0 2.0 -2.0
|
|
0.0 1.0 0.0 1.0 2.0 2.0
|
|
|
|
[vertex shader]
|
|
|
|
struct vertex
|
|
{
|
|
struct
|
|
{
|
|
float4 texcoord : texcoord;
|
|
float4 pos : sv_position;
|
|
} m;
|
|
};
|
|
|
|
void main(inout struct vertex v)
|
|
{
|
|
}
|
|
|
|
[pixel shader]
|
|
struct input
|
|
{
|
|
struct
|
|
{
|
|
float4 texcoord : texcoord;
|
|
} m;
|
|
};
|
|
|
|
struct output
|
|
{
|
|
struct
|
|
{
|
|
float4 color : sv_target;
|
|
} m;
|
|
};
|
|
|
|
struct output main(struct input i)
|
|
{
|
|
struct output o;
|
|
o.m.color = i.m.texcoord;
|
|
return o;
|
|
}
|
|
|
|
[test]
|
|
draw triangle strip 4
|
|
probe all rgba (0.0, 1.0, 0.0, 1.0)
|