Paul Gofman : ddraw/tests: Test specular lighting with zero shininess in ddraw4.

Alexandre Julliard julliard at winehq.org
Fri Mar 29 16:27:56 CDT 2019


Module: wine
Branch: master
Commit: 9411bc524c845a03ae5373fafdf949d53da57691
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=9411bc524c845a03ae5373fafdf949d53da57691

Author: Paul Gofman <gofmanp at gmail.com>
Date:   Fri Mar 29 13:56:40 2019 +0300

ddraw/tests: Test specular lighting with zero shininess in ddraw4.

Signed-off-by: Paul Gofman <gofmanp at gmail.com>
Signed-off-by: Henri Verbeet <hverbeet at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/ddraw/tests/ddraw4.c | 16 +++++++++++-----
 1 file changed, 11 insertions(+), 5 deletions(-)

diff --git a/dlls/ddraw/tests/ddraw4.c b/dlls/ddraw/tests/ddraw4.c
index f60d606..263679d 100644
--- a/dlls/ddraw/tests/ddraw4.c
+++ b/dlls/ddraw/tests/ddraw4.c
@@ -4374,25 +4374,25 @@ static void test_specular_lighting(void)
         {320, 360, 0x002c2c2c},
         {480, 360, 0x006e6e6e},
     },
-    expected_point_side[] =
+    expected_point_far[] =
     {
         {160, 120, 0x00000000},
         {320, 120, 0x00000000},
         {480, 120, 0x00000000},
         {160, 240, 0x00000000},
-        {320, 240, 0x00000000},
+        {320, 240, 0x00ffffff},
         {480, 240, 0x00000000},
         {160, 360, 0x00000000},
         {320, 360, 0x00000000},
         {480, 360, 0x00000000},
     },
-    expected_point_far[] =
+    expected_zero[] =
     {
         {160, 120, 0x00000000},
         {320, 120, 0x00000000},
         {480, 120, 0x00000000},
         {160, 240, 0x00000000},
-        {320, 240, 0x00ffffff},
+        {320, 240, 0x00000000},
         {480, 240, 0x00000000},
         {160, 360, 0x00000000},
         {320, 360, 0x00000000},
@@ -4415,8 +4415,14 @@ static void test_specular_lighting(void)
         {&point, TRUE, 30.0f, expected_point, ARRAY_SIZE(expected_point)},
         {&spot, TRUE, 30.0f, expected_spot, ARRAY_SIZE(expected_spot)},
         {&parallelpoint, TRUE, 30.0f, expected_parallelpoint, ARRAY_SIZE(expected_parallelpoint)},
-        {&point_side, TRUE, 0.0f, expected_point_side, ARRAY_SIZE(expected_point_side)},
+        {&point_side, TRUE, 0.0f, expected_zero, ARRAY_SIZE(expected_zero)},
         {&point_far, TRUE, 1.0f, expected_point_far, ARRAY_SIZE(expected_point_far)},
+        {&directional, FALSE, 0.0f, expected_zero, ARRAY_SIZE(expected_zero)},
+        {&directional, TRUE, 0.0f, expected_zero, ARRAY_SIZE(expected_zero)},
+        {&point, TRUE, 0.0f, expected_zero, ARRAY_SIZE(expected_zero)},
+        {&spot, TRUE, 0.0f, expected_zero, ARRAY_SIZE(expected_zero)},
+        {&parallelpoint, TRUE, 0.0f, expected_zero, ARRAY_SIZE(expected_zero)},
+        {&point_far, TRUE, 0.0f, expected_zero, ARRAY_SIZE(expected_zero)},
     };
     IDirect3D3 *d3d;
     IDirect3DDevice3 *device;




More information about the wine-cvs mailing list