Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
0cae65d4
Commit
0cae65d4
authored
Jul 16, 2014
by
Henri Verbeet
Committed by
Alexandre Julliard
Jul 16, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3d9/tests: Get rid of struct vertex_shortcolor.
parent
1ccf7f5e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
9 deletions
+10
-9
visual.c
dlls/d3d9/tests/visual.c
+10
-9
No files found.
dlls/d3d9/tests/visual.c
View file @
0cae65d4
...
...
@@ -7943,10 +7943,6 @@ done:
DestroyWindow
(
window
);
}
struct
vertex_shortcolor
{
float
x
,
y
,
z
;
unsigned
short
r
,
g
,
b
,
a
;
};
struct
vertex_floatcolor
{
float
x
,
y
,
z
;
float
r
,
g
,
b
,
a
;
...
...
@@ -8021,12 +8017,17 @@ static void fixed_function_decl_test(void)
{{
0
.
0
f
,
0
.
0
f
,
0
.
1
f
},
0x00ffff00
},
{{
0
.
0
f
,
1
.
0
f
,
0
.
1
f
},
0x00ffff00
},
};
static
const
struct
vertex_shortcolor
quad3
[]
=
/* short */
static
const
struct
{
struct
vec3
position
;
struct
{
unsigned
short
x
,
y
,
z
,
w
;
}
color
;
}
quad3
[]
=
/* USHORT4N */
{
{
0
.
0
f
,
-
1
.
0
f
,
0
.
1
f
,
0x0000
,
0x0000
,
0xffff
,
0xffff
},
{
0
.
0
f
,
0
.
0
f
,
0
.
1
f
,
0x0000
,
0x0000
,
0xffff
,
0xffff
},
{
1
.
0
f
,
-
1
.
0
f
,
0
.
1
f
,
0x0000
,
0x0000
,
0xffff
,
0xffff
},
{
1
.
0
f
,
0
.
0
f
,
0
.
1
f
,
0x0000
,
0x0000
,
0xffff
,
0xffff
},
{
{
0
.
0
f
,
-
1
.
0
f
,
0
.
1
f
},
{
0x0000
,
0x0000
,
0xffff
,
0xffff
}
},
{
{
0
.
0
f
,
0
.
0
f
,
0
.
1
f
},
{
0x0000
,
0x0000
,
0xffff
,
0xffff
}
},
{
{
1
.
0
f
,
-
1
.
0
f
,
0
.
1
f
},
{
0x0000
,
0x0000
,
0xffff
,
0xffff
}
},
{
{
1
.
0
f
,
0
.
0
f
,
0
.
1
f
},
{
0x0000
,
0x0000
,
0xffff
,
0xffff
}
},
};
static
const
struct
vertex_floatcolor
quad4
[]
=
{
...
...
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