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
35aa2ce9
Commit
35aa2ce9
authored
Jul 22, 2007
by
H. Verbeet
Committed by
Alexandre Julliard
Jul 23, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Correctly handle normalized vertex declaration data types.
parent
318bc906
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
wined3d_private.h
dlls/wined3d/wined3d_private.h
+6
-6
No files found.
dlls/wined3d/wined3d_private.h
View file @
35aa2ce9
...
...
@@ -132,13 +132,13 @@ static WINED3DGLTYPE const glTypeLookup[WINED3DDECLTYPE_UNUSED] = {
{
WINED3DDECLTYPE_UBYTE4
,
4
,
GL_UNSIGNED_BYTE
,
GL_FALSE
,
sizeof
(
BYTE
)},
{
WINED3DDECLTYPE_SHORT2
,
2
,
GL_SHORT
,
GL_FALSE
,
sizeof
(
short
int
)},
{
WINED3DDECLTYPE_SHORT4
,
4
,
GL_SHORT
,
GL_FALSE
,
sizeof
(
short
int
)},
{
WINED3DDECLTYPE_UBYTE4N
,
4
,
GL_UNSIGNED_BYTE
,
GL_
FALSE
,
sizeof
(
BYTE
)},
{
WINED3DDECLTYPE_SHORT2N
,
2
,
GL_SHORT
,
GL_
FALSE
,
sizeof
(
short
int
)},
{
WINED3DDECLTYPE_SHORT4N
,
4
,
GL_SHORT
,
GL_
FALSE
,
sizeof
(
short
int
)},
{
WINED3DDECLTYPE_USHORT2N
,
2
,
GL_UNSIGNED_SHORT
,
GL_
FALSE
,
sizeof
(
short
int
)},
{
WINED3DDECLTYPE_USHORT4N
,
4
,
GL_UNSIGNED_SHORT
,
GL_
FALSE
,
sizeof
(
short
int
)},
{
WINED3DDECLTYPE_UBYTE4N
,
4
,
GL_UNSIGNED_BYTE
,
GL_
TRUE
,
sizeof
(
BYTE
)},
{
WINED3DDECLTYPE_SHORT2N
,
2
,
GL_SHORT
,
GL_
TRUE
,
sizeof
(
short
int
)},
{
WINED3DDECLTYPE_SHORT4N
,
4
,
GL_SHORT
,
GL_
TRUE
,
sizeof
(
short
int
)},
{
WINED3DDECLTYPE_USHORT2N
,
2
,
GL_UNSIGNED_SHORT
,
GL_
TRUE
,
sizeof
(
short
int
)},
{
WINED3DDECLTYPE_USHORT4N
,
4
,
GL_UNSIGNED_SHORT
,
GL_
TRUE
,
sizeof
(
short
int
)},
{
WINED3DDECLTYPE_UDEC3
,
3
,
GL_UNSIGNED_SHORT
,
GL_FALSE
,
sizeof
(
short
int
)},
{
WINED3DDECLTYPE_DEC3N
,
3
,
GL_SHORT
,
GL_
FALSE
,
sizeof
(
short
int
)},
{
WINED3DDECLTYPE_DEC3N
,
3
,
GL_SHORT
,
GL_
TRUE
,
sizeof
(
short
int
)},
{
WINED3DDECLTYPE_FLOAT16_2
,
2
,
GL_FLOAT
,
GL_FALSE
,
sizeof
(
short
int
)},
{
WINED3DDECLTYPE_FLOAT16_4
,
4
,
GL_FLOAT
,
GL_FALSE
,
sizeof
(
short
int
)}};
...
...
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