Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
871fc4a3
Commit
871fc4a3
authored
Nov 27, 2014
by
Stefan Dösinger
Committed by
Alexandre Julliard
Nov 27, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3d/tests: Rename fog_interpolation_test for consistency.
parent
96519f9b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
9 deletions
+9
-9
visual.c
dlls/d3d8/tests/visual.c
+3
-3
visual.c
dlls/d3d9/tests/visual.c
+3
-3
ddraw7.c
dlls/ddraw/tests/ddraw7.c
+3
-3
No files found.
dlls/d3d8/tests/visual.c
View file @
871fc4a3
...
...
@@ -5217,7 +5217,7 @@ done:
DestroyWindow
(
window
);
}
static
void
fog_interpolation_test
(
void
)
static
void
test_fog_interpolation
(
void
)
{
HRESULT
hr
;
IDirect3DDevice8
*
device
;
...
...
@@ -5433,7 +5433,7 @@ static void test_negative_fixedfunction_fog(void)
* parameters to 0.0 and 1.0 in the table fog case. */
{
D3DFVF_XYZRHW
,
tquad
,
sizeof
(
*
tquad
),
&
identity
,
{
-
1
.
0
f
},
{
0
.
0
f
},
D3DFOG_NONE
,
D3DFOG_LINEAR
,
0x00808000
,
0x00ff0000
},
/*
fog_interpolation_test
shows that vertex fog evaluates the fog
/*
test_fog_interpolation
shows that vertex fog evaluates the fog
* equation in the vertex pipeline. Start = -1.0 && end = 0.0 shows
* that the abs happens before the fog equation is evaluated. */
{
D3DFVF_XYZ
,
quad
,
sizeof
(
*
quad
),
&
zero
,
{
0
.
0
f
},
{
1
.
0
f
},
...
...
@@ -5565,6 +5565,6 @@ START_TEST(visual)
volume_v16u16_test
();
add_dirty_rect_test
();
test_3dc_formats
();
fog_interpolation_test
();
test_fog_interpolation
();
test_negative_fixedfunction_fog
();
}
dlls/d3d9/tests/visual.c
View file @
871fc4a3
...
...
@@ -16820,7 +16820,7 @@ done:
DestroyWindow
(
window
);
}
static
void
fog_interpolation_test
(
void
)
static
void
test_fog_interpolation
(
void
)
{
HRESULT
hr
;
IDirect3DDevice9
*
device
;
...
...
@@ -17036,7 +17036,7 @@ static void test_negative_fixedfunction_fog(void)
* parameters to 0.0 and 1.0 in the table fog case. */
{
D3DFVF_XYZRHW
,
tquad
,
sizeof
(
*
tquad
),
&
identity
,
{
-
1
.
0
f
},
{
0
.
0
f
},
D3DFOG_NONE
,
D3DFOG_LINEAR
,
0x00808000
,
0x00ff0000
},
/*
fog_interpolation_test
shows that vertex fog evaluates the fog
/*
test_fog_interpolation
shows that vertex fog evaluates the fog
* equation in the vertex pipeline. Start = -1.0 && end = 0.0 shows
* that the abs happens before the fog equation is evaluated. */
{
D3DFVF_XYZ
,
quad
,
sizeof
(
*
quad
),
&
zero
,
{
0
.
0
f
},
{
1
.
0
f
},
...
...
@@ -17226,6 +17226,6 @@ START_TEST(visual)
stencil_cull_test
();
test_per_stage_constant
();
test_3dc_formats
();
fog_interpolation_test
();
test_fog_interpolation
();
test_negative_fixedfunction_fog
();
}
dlls/ddraw/tests/ddraw7.c
View file @
871fc4a3
...
...
@@ -7878,7 +7878,7 @@ static void test_surface_desc_lock(void)
DestroyWindow
(
window
);
}
static
void
fog_interpolation_test
(
void
)
static
void
test_fog_interpolation
(
void
)
{
HRESULT
hr
;
IDirect3DDevice7
*
device
;
...
...
@@ -8069,7 +8069,7 @@ static void test_negative_fixedfunction_fog(void)
/* r200 GPUs and presumably all d3d8 and older HW clamp the fog
* parameters to 0.0 and 1.0 in the table fog case. */
{
D3DFVF_XYZRHW
,
tquad
,
&
identity
,
{
-
1
.
0
f
},
{
0
.
0
f
},
D3DFOG_NONE
,
D3DFOG_LINEAR
,
0x00808000
,
0x00ff0000
},
/*
fog_interpolation_test
shows that vertex fog evaluates the fog
/*
test_fog_interpolation
shows that vertex fog evaluates the fog
* equation in the vertex pipeline. Start = -1.0 && end = 0.0 shows
* that the abs happens before the fog equation is evaluated. */
{
D3DFVF_XYZ
,
quad
,
&
zero
,
{
0
.
0
f
},
{
1
.
0
f
},
D3DFOG_LINEAR
,
D3DFOG_NONE
,
0x00808000
,
0x00808000
},
...
...
@@ -8229,6 +8229,6 @@ START_TEST(ddraw7)
test_lost_device
();
test_resource_priority
();
test_surface_desc_lock
();
fog_interpolation_test
();
test_fog_interpolation
();
test_negative_fixedfunction_fog
();
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment