mirror of
https://gitlab.winehq.org/wine/vkd3d.git
synced 2025-04-13 05:43:18 -07:00
tests: Add some tests for effects groups syntax.
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
This commit is contained in:
parent
017f86aaaf
commit
ffae369748
Notes:
Alexandre Julliard
2024-01-11 23:13:27 +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/443
@ -38,6 +38,13 @@ float4 main() : sv_target
|
|||||||
return float4(0, 0, 0, 0);
|
return float4(0, 0, 0, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[pixel shader fail todo]
|
||||||
|
float4 main() : sv_target
|
||||||
|
{
|
||||||
|
float4 fxgroup = {0, 0, 0, 0};
|
||||||
|
return fxgroup;
|
||||||
|
}
|
||||||
|
|
||||||
[pixel shader]
|
[pixel shader]
|
||||||
typedef float4 Technique10;
|
typedef float4 Technique10;
|
||||||
typedef float4 Technique11;
|
typedef float4 Technique11;
|
||||||
@ -62,6 +69,13 @@ float4 main() : sv_target
|
|||||||
return teChnique11;
|
return teChnique11;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[pixel shader]
|
||||||
|
float4 main() : sv_target
|
||||||
|
{
|
||||||
|
float4 fxGroup = {0, 0, 0, 0};
|
||||||
|
return fxGroup;
|
||||||
|
}
|
||||||
|
|
||||||
[effect todo]
|
[effect todo]
|
||||||
technique
|
technique
|
||||||
{
|
{
|
||||||
@ -103,6 +117,12 @@ tEchnique11
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[effect fail]
|
||||||
|
// Empty groups are not allowed
|
||||||
|
fxgroup group
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
% Regular shaders with technique blocks
|
% Regular shaders with technique blocks
|
||||||
[vertex shader todo]
|
[vertex shader todo]
|
||||||
float4 main() : sv_position
|
float4 main() : sv_position
|
||||||
@ -122,6 +142,11 @@ technique11
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fxgroup group
|
||||||
|
{
|
||||||
|
technique10 {}
|
||||||
|
}
|
||||||
|
|
||||||
[pixel shader todo]
|
[pixel shader todo]
|
||||||
float4 main() : sv_target
|
float4 main() : sv_target
|
||||||
{
|
{
|
||||||
@ -139,3 +164,8 @@ technique10
|
|||||||
technique11
|
technique11
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fxgroup group
|
||||||
|
{
|
||||||
|
technique10 {}
|
||||||
|
}
|
||||||
|
@ -9,6 +9,13 @@ float4 main() : sv_target
|
|||||||
return teChnique;
|
return teChnique;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[pixel shader fail todo]
|
||||||
|
float4 main() : sv_target
|
||||||
|
{
|
||||||
|
float4 fxgroup = {0, 0, 0, 0};
|
||||||
|
return fxgroup;
|
||||||
|
}
|
||||||
|
|
||||||
[pixel shader]
|
[pixel shader]
|
||||||
float4 main() : sv_target
|
float4 main() : sv_target
|
||||||
{
|
{
|
||||||
@ -23,6 +30,13 @@ float4 main() : sv_target
|
|||||||
return teChnique11;
|
return teChnique11;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[pixel shader]
|
||||||
|
float4 main() : sv_target
|
||||||
|
{
|
||||||
|
float4 fxGroup = {0, 0, 0, 0};
|
||||||
|
return fxGroup;
|
||||||
|
}
|
||||||
|
|
||||||
[effect todo]
|
[effect todo]
|
||||||
technique
|
technique
|
||||||
{
|
{
|
||||||
@ -101,6 +115,11 @@ technique11
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fxgroup group
|
||||||
|
{
|
||||||
|
technique10 {}
|
||||||
|
}
|
||||||
|
|
||||||
[pixel shader todo]
|
[pixel shader todo]
|
||||||
float4 main() : sv_target
|
float4 main() : sv_target
|
||||||
{
|
{
|
||||||
@ -118,3 +137,8 @@ technique10
|
|||||||
technique11
|
technique11
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fxgroup group
|
||||||
|
{
|
||||||
|
technique10 {}
|
||||||
|
}
|
||||||
|
@ -9,6 +9,13 @@ float4 main() : sv_target
|
|||||||
return teChnique;
|
return teChnique;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[pixel shader fail todo]
|
||||||
|
float4 main() : sv_target
|
||||||
|
{
|
||||||
|
float4 fxgroup = {0, 0, 0, 0};
|
||||||
|
return fxgroup;
|
||||||
|
}
|
||||||
|
|
||||||
[pixel shader]
|
[pixel shader]
|
||||||
float4 main() : sv_target
|
float4 main() : sv_target
|
||||||
{
|
{
|
||||||
@ -23,6 +30,13 @@ float4 main() : sv_target
|
|||||||
return teChnique11;
|
return teChnique11;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[pixel shader]
|
||||||
|
float4 main() : sv_target
|
||||||
|
{
|
||||||
|
float4 fxGroup = {0, 0, 0, 0};
|
||||||
|
return fxGroup;
|
||||||
|
}
|
||||||
|
|
||||||
[effect todo]
|
[effect todo]
|
||||||
technique
|
technique
|
||||||
{
|
{
|
||||||
@ -101,6 +115,11 @@ technique11
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fxgroup group
|
||||||
|
{
|
||||||
|
technique10 {}
|
||||||
|
}
|
||||||
|
|
||||||
[pixel shader todo]
|
[pixel shader todo]
|
||||||
float4 main() : sv_target
|
float4 main() : sv_target
|
||||||
{
|
{
|
||||||
@ -118,3 +137,50 @@ technique10
|
|||||||
technique11
|
technique11
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fxgroup group
|
||||||
|
{
|
||||||
|
technique10 {}
|
||||||
|
}
|
||||||
|
|
||||||
|
% Groups syntax
|
||||||
|
|
||||||
|
% Name has to be specified, it belongs to global scope
|
||||||
|
[effect fail]
|
||||||
|
fxgroup
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
% Group can't be empty
|
||||||
|
[effect fail]
|
||||||
|
fxgroup group
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
[effect fail]
|
||||||
|
float4 group;
|
||||||
|
|
||||||
|
fxgroup group
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
% Groups can only contain a list of techniques
|
||||||
|
[effect fail]
|
||||||
|
fxgroup group
|
||||||
|
{
|
||||||
|
float4 v;
|
||||||
|
|
||||||
|
technique11 {}
|
||||||
|
}
|
||||||
|
|
||||||
|
% Group provides scope for techniques
|
||||||
|
[effect todo]
|
||||||
|
fxgroup group1
|
||||||
|
{
|
||||||
|
technique11 tech0 {}
|
||||||
|
}
|
||||||
|
|
||||||
|
fxgroup group2
|
||||||
|
{
|
||||||
|
technique11 tech0 {}
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user