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
be10a6a0
Commit
be10a6a0
authored
Apr 11, 2006
by
Jason Green
Committed by
Alexandre Julliard
Apr 12, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Spelling fixes and downgrade a FIXME to a TRACE.
parent
108688f9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
vertexdeclaration.c
dlls/wined3d/vertexdeclaration.c
+5
-5
No files found.
dlls/wined3d/vertexdeclaration.c
View file @
be10a6a0
...
...
@@ -462,7 +462,7 @@ static HRESULT WINAPI IWineD3DVertexDeclarationImpl_GetDeclaration8(IWineD3DVert
/* The Incredibles and Teenage Mutant Ninja Turtles require this in d3d9 for NumElements == 0,
TODO: this needs to be tested against windows */
if
(
*
pSizeOfData
==
0
)
{
TRACE
(
"(%p) : Requested the vertex declaration without spec
e
fying the size of the return buffer
\n
"
,
This
);
TRACE
(
"(%p) : Requested the vertex declaration without spec
i
fying the size of the return buffer
\n
"
,
This
);
*
pSizeOfData
=
This
->
declaration8Length
;
memcpy
(
pData
,
This
->
pDeclaration8
,
This
->
declaration8Length
);
return
WINED3D_OK
;
...
...
@@ -510,7 +510,7 @@ HRESULT WINAPI IWineD3DVertexDeclarationImpl_GetDeclaration(IWineD3DVertexDeclar
hr
=
IWineD3DVertexDeclarationImpl_GetDeclaration9
(
iface
,
(
D3DVERTEXELEMENT9
*
)
pData
,
pSize
);
break
;
default
:
FIXME
(
"(%p) : Unsupport DirectX version %u
\n
"
,
This
,
((
IWineD3DImpl
*
)
This
->
wineD3DDevice
->
wineD3D
)
->
dxVersion
);
FIXME
(
"(%p) : Unsupport
ed
DirectX version %u
\n
"
,
This
,
((
IWineD3DImpl
*
)
This
->
wineD3DDevice
->
wineD3D
)
->
dxVersion
);
break
;
}
return
hr
;
...
...
@@ -523,15 +523,15 @@ HRESULT WINAPI IWineD3DVertexDeclarationImpl_SetDeclaration(IWineD3DVertexDeclar
TRACE
(
"(%p) : d3d version %d
\n
"
,
This
,
((
IWineD3DImpl
*
)
This
->
wineD3DDevice
->
wineD3D
)
->
dxVersion
);
switch
(((
IWineD3DImpl
*
)
This
->
wineD3DDevice
->
wineD3D
)
->
dxVersion
)
{
case
8
:
TRACE
(
"Parsing decla
t
ation 8
\n
"
);
TRACE
(
"Parsing decla
r
ation 8
\n
"
);
hr
=
IWineD3DVertexDeclarationImpl_ParseDeclaration8
(
iface
,
(
CONST
DWORD
*
)
pDecl
);
break
;
case
9
:
FIXME
(
"Parsing declat
ation 9
\n
"
);
TRACE
(
"Parsing declar
ation 9
\n
"
);
hr
=
IWineD3DVertexDeclarationImpl_ParseDeclaration9
(
iface
,
(
CONST
D3DVERTEXELEMENT9
*
)
pDecl
);
break
;
default
:
FIXME
(
"(%p) : Unsupport DirectX version %u
\n
"
,
This
,
((
IWineD3DImpl
*
)
This
->
wineD3DDevice
->
wineD3D
)
->
dxVersion
);
FIXME
(
"(%p) : Unsupport
ed
DirectX version %u
\n
"
,
This
,
((
IWineD3DImpl
*
)
This
->
wineD3DDevice
->
wineD3D
)
->
dxVersion
);
break
;
}
TRACE
(
"Returning
\n
"
);
...
...
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