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
cab99dbc
Commit
cab99dbc
authored
Apr 21, 2003
by
Jason Edmeades
Committed by
Alexandre Julliard
Apr 21, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Silence index buffer lock + offset fixme to a trace because the
behaviour under that scenario works.
parent
53391ac3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
5 deletions
+1
-5
indexbuffer.c
dlls/d3d8/indexbuffer.c
+1
-5
No files found.
dlls/d3d8/indexbuffer.c
View file @
cab99dbc
...
...
@@ -104,11 +104,7 @@ D3DRESOURCETYPE WINAPI IDirect3DIndexBuffer8Impl_GetType(LPDIRECT3DINDEXBUFFER8
/* IDirect3DIndexBuffer8 */
HRESULT
WINAPI
IDirect3DIndexBuffer8Impl_Lock
(
LPDIRECT3DINDEXBUFFER8
iface
,
UINT
OffsetToLock
,
UINT
SizeToLock
,
BYTE
**
ppbData
,
DWORD
Flags
)
{
ICOM_THIS
(
IDirect3DIndexBuffer8Impl
,
iface
);
if
(
OffsetToLock
==
0
)
{
TRACE
(
"(%p) : no locking yet, offset %d, size %d, Flags=%lx
\n
"
,
This
,
OffsetToLock
,
SizeToLock
,
Flags
);
}
else
{
FIXME
(
"(%p) : stub, offset %d, size %d, Flags=%lx
\n
"
,
This
,
OffsetToLock
,
SizeToLock
,
Flags
);
}
TRACE
(
"(%p) : no locking yet, offset %d, size %d, Flags=%lx
\n
"
,
This
,
OffsetToLock
,
SizeToLock
,
Flags
);
*
ppbData
=
(
BYTE
*
)
This
->
allocatedMemory
+
OffsetToLock
;
return
D3D_OK
;
}
...
...
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