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
88178027
Commit
88178027
authored
Jan 14, 2009
by
Henri Verbeet
Committed by
Alexandre Julliard
Jan 14, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Remove CleanDirtyBox().
It's never used.
parent
8c84636c
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
15 deletions
+0
-15
volume.c
dlls/wined3d/volume.c
+0
-13
wined3d.idl
include/wine/wined3d.idl
+0
-2
No files found.
dlls/wined3d/volume.c
View file @
88178027
...
...
@@ -261,18 +261,6 @@ static HRESULT WINAPI IWineD3DVolumeImpl_UnlockBox(IWineD3DVolume *iface) {
/* Internal use functions follow : */
static
HRESULT
WINAPI
IWineD3DVolumeImpl_CleanDirtyBox
(
IWineD3DVolume
*
iface
)
{
IWineD3DVolumeImpl
*
This
=
(
IWineD3DVolumeImpl
*
)
iface
;
This
->
dirty
=
FALSE
;
This
->
lockedBox
.
Left
=
This
->
currentDesc
.
Width
;
This
->
lockedBox
.
Top
=
This
->
currentDesc
.
Height
;
This
->
lockedBox
.
Front
=
This
->
currentDesc
.
Depth
;
This
->
lockedBox
.
Right
=
0
;
This
->
lockedBox
.
Bottom
=
0
;
This
->
lockedBox
.
Back
=
0
;
return
WINED3D_OK
;
}
static
HRESULT
WINAPI
IWineD3DVolumeImpl_AddDirtyBox
(
IWineD3DVolume
*
iface
,
CONST
WINED3DBOX
*
pDirtyBox
)
{
IWineD3DVolumeImpl
*
This
=
(
IWineD3DVolumeImpl
*
)
iface
;
This
->
dirty
=
TRUE
;
...
...
@@ -375,7 +363,6 @@ const IWineD3DVolumeVtbl IWineD3DVolume_Vtbl =
IWineD3DVolumeImpl_UnlockBox
,
/* Internal interface */
IWineD3DVolumeImpl_AddDirtyBox
,
IWineD3DVolumeImpl_CleanDirtyBox
,
IWineD3DVolumeImpl_LoadTexture
,
IWineD3DVolumeImpl_SetContainer
};
include/wine/wined3d.idl
View file @
88178027
...
...
@@ -2515,8 +2515,6 @@ interface IWineD3DVolume : IWineD3DResource
HRESULT
AddDirtyBox
(
[
in
]
const
WINED3DBOX
*
dirty_box
)
;
HRESULT
CleanDirtyBox
(
)
;
HRESULT
LoadTexture
(
[
in
]
int
gl_level
,
[
in
]
BOOL
srgb_mode
...
...
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