Commit 7c47a9d1 authored by Matteo Bruni's avatar Matteo Bruni Committed by Alexandre Julliard

d3dcompiler: Accept dot terminated float immediate values.

parent 422d57e2
......@@ -98,7 +98,7 @@ NEWLINE (\n)|(\r\n)
COMMA ","
IMMVAL \-?(([0-9]+)|([0-9]*\.[0-9]+))(f)?
IMMVAL \-?(([0-9]+\.?)|([0-9]*\.[0-9]+))(f)?
ANY (.)
......
......@@ -127,6 +127,12 @@ static void ps_1_1_test(void) {
"mov_d4 r0, r1\n",
{0xffff0101, 0x00000001, 0x8e0f0000, 0x80e40001, 0x0000ffff}
},
{ /* shader 2 */
"ps.1.1\n"
"def c2, 0, 0., 0, 0.\n",
{0xffff0101, 0x00000051, 0xa00f0002, 0x00000000, 0x00000000, 0x00000000,
0x00000000, 0x0000ffff}
},
};
exec_tests("ps_1_1", tests, sizeof(tests) / sizeof(tests[0]));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment