mirror of
https://gitlab.winehq.org/wine/vkd3d.git
synced 2025-09-12 18:50:22 -07:00
tests/shader-runner: Change resource declaration syntax on shader_test files.
On shader_test files, now resources should be declared this way: [texture n] -> [srv n] [srv buffer n] -> [srv n] [uav n] -> [uav n] [uav buffer n] -> [uav n] [vertex buffer n] -> [vb n] [render target n] -> [rtv n] The dimension (buffer or 2D) is now specified as an additional parameter in the "size" directive: For 2D resources: size (n, m) -> size (2d, n, m) For buffers: size (n, 1) -> size (buffer, n)
This commit is contained in:
committed by
Alexandre Julliard
parent
4d855611b7
commit
b08be04465
Notes:
Alexandre Julliard
2024-02-19 22:59:16 +01:00
Approved-by: Giovanni Mascellani (@giomasce) Approved-by: Zebediah Figura (@zfigura) Approved-by: Henri Verbeet (@hverbeet) Approved-by: Alexandre Julliard (@julliard) Merge-Request: https://gitlab.winehq.org/wine/vkd3d/-/merge_requests/569
@@ -26,13 +26,13 @@ float4 main() : sv_target
|
||||
|
||||
[uav 1]
|
||||
format r32 float
|
||||
size (2, 2)
|
||||
size (2d, 2, 2)
|
||||
|
||||
0.1 0.2
|
||||
0.3 0.4
|
||||
|
||||
[uav 2]
|
||||
size (1, 1)
|
||||
size (2d, 1, 1)
|
||||
|
||||
0.5 0.6 0.7 0.8
|
||||
|
||||
@@ -63,12 +63,12 @@ probe uav 2 (0, 0) rgba (2.0, 1.0, 4.0, 3.0)
|
||||
% lower than the highest render target.
|
||||
% This ceases to be true with shader model 5.1.
|
||||
|
||||
[render target 1]
|
||||
[rtv 1]
|
||||
format r32g32b32a32 float
|
||||
size (640, 480)
|
||||
size (2d, 640, 480)
|
||||
|
||||
[uav 2]
|
||||
size (1, 1)
|
||||
size (2d, 1, 1)
|
||||
|
||||
0.1 0.2 0.3 0.4
|
||||
|
||||
@@ -105,7 +105,7 @@ probe uav 2 (0, 0) rgba (0.9, 0.8, 0.7, 0.6)
|
||||
|
||||
|
||||
[uav 3]
|
||||
size (1, 1)
|
||||
size (2d, 1, 1)
|
||||
|
||||
0.1 0.2 0.3 0.4
|
||||
|
||||
@@ -139,12 +139,12 @@ probe uav 3 (0, 0) rgba (0.9, 0.8, 0.7, 0.6)
|
||||
% Test that we can declare and use an array of UAVs.
|
||||
|
||||
[uav 2]
|
||||
size (1, 1)
|
||||
size (2d, 1, 1)
|
||||
|
||||
0.1 0.2 0.3 0.4
|
||||
|
||||
[uav 3]
|
||||
size (1, 1)
|
||||
size (2d, 1, 1)
|
||||
|
||||
0.5 0.6 0.7 0.8
|
||||
|
||||
|
Reference in New Issue
Block a user