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
2100b9dc
Commit
2100b9dc
authored
Apr 23, 2007
by
H. Verbeet
Committed by
Alexandre Julliard
Apr 24, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: The second parameter to glTexImage3DEXT isn't a GLenum.
parent
950014b4
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
volume.c
dlls/wined3d/volume.c
+1
-1
volumetexture.c
dlls/wined3d/volumetexture.c
+1
-1
wined3d_interface.h
include/wine/wined3d_interface.h
+1
-1
No files found.
dlls/wined3d/volume.c
View file @
2100b9dc
...
...
@@ -262,7 +262,7 @@ static HRESULT WINAPI IWineD3DVolumeImpl_SetContainer(IWineD3DVolume *iface, IWi
return
WINED3D_OK
;
}
static
HRESULT
WINAPI
IWineD3DVolumeImpl_LoadTexture
(
IWineD3DVolume
*
iface
,
GLenum
gl_level
)
{
static
HRESULT
WINAPI
IWineD3DVolumeImpl_LoadTexture
(
IWineD3DVolume
*
iface
,
int
gl_level
)
{
IWineD3DVolumeImpl
*
This
=
(
IWineD3DVolumeImpl
*
)
iface
;
WINED3DFORMAT
format
=
This
->
resource
.
format
;
const
PixelFormatDesc
*
formatEntry
=
getFormatDescEntry
(
format
);
...
...
dlls/wined3d/volumetexture.c
View file @
2100b9dc
...
...
@@ -92,7 +92,7 @@ static DWORD WINAPI IWineD3DVolumeTextureImpl_GetPriority(IWineD3DVolumeTexture
static
void
WINAPI
IWineD3DVolumeTextureImpl_PreLoad
(
IWineD3DVolumeTexture
*
iface
)
{
/* Overrider the IWineD3DResource Preload method */
UINT
i
;
int
i
;
IWineD3DVolumeTextureImpl
*
This
=
(
IWineD3DVolumeTextureImpl
*
)
iface
;
IWineD3DDeviceImpl
*
device
=
This
->
resource
.
wineD3DDevice
;
...
...
include/wine/wined3d_interface.h
View file @
2100b9dc
...
...
@@ -1209,7 +1209,7 @@ DECLARE_INTERFACE_(IWineD3DVolume,IWineD3DResource)
STDMETHOD
(
UnlockBox
)(
THIS
)
PURE
;
STDMETHOD
(
AddDirtyBox
)(
THIS_
CONST
WINED3DBOX
*
pDirtyBox
)
PURE
;
STDMETHOD
(
CleanDirtyBox
)(
THIS
)
PURE
;
STDMETHOD
(
LoadTexture
)(
THIS_
UINT
gl_level
)
PURE
;
STDMETHOD
(
LoadTexture
)(
THIS_
int
gl_level
)
PURE
;
STDMETHOD
(
SetContainer
)(
THIS_
IWineD3DBase
*
container
)
PURE
;
};
#undef INTERFACE
...
...
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