mirror of
https://gitlab.winehq.org/wine/vkd3d.git
synced 2025-09-12 18:50:22 -07:00
vkd3d-shader: Implement DEQ instruction.
Source modifiers and immediate constants are not supported. Signed-off-by: Conor McCarthy <cmccarthy@codeweavers.com> Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
committed by
Alexandre Julliard
parent
c1cd999079
commit
59cf70142a
@@ -9879,8 +9879,8 @@ static void test_shader_instructions(void)
|
||||
{&ps_dmovc, {.d = {{1.5, 0.0}}}, {.d = {1.5, 0.0}}, true, true},
|
||||
{&ps_dmodifier, {.d = {{1.5, 0.0}}}, {.d = {1.5f, 2.5f}}, true, true},
|
||||
{&ps_dmodifier, {.d = {{-1.5, 0.0}}}, {.d = {1.5f, 1.5f}}, true, true},
|
||||
{&ps_deq, {.d = {{0.0, 0.0}}}, {{0xffffffff}}, true, true},
|
||||
{&ps_deq, {.d = {{1.0, 0.0}}}, {{0x00000000}}, true, true},
|
||||
{&ps_deq, {.d = {{0.0, 0.0}}}, {{0xffffffff}}, true},
|
||||
{&ps_deq, {.d = {{1.0, 0.0}}}, {{0x00000000}}, true},
|
||||
{&ps_dne, {.d = {{0.0, 0.0}}}, {{0x00000000}}, true, true},
|
||||
{&ps_dne, {.d = {{1.0, 0.0}}}, {{0xffffffff}}, true, true},
|
||||
{&ps_dtou, {.d = {{ -NAN}}}, {{ 0, 0 }}, true, true},
|
||||
|
Reference in New Issue
Block a user