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
3728a882
Commit
3728a882
authored
May 13, 2012
by
Józef Kucia
Committed by
Alexandre Julliard
May 14, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3dx9: Properly check if a texture is lockable in D3DXCreateTextureFromFileInMemoryEx.
parent
b47c92ba
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
5 deletions
+22
-5
texture.c
dlls/d3dx9_36/tests/texture.c
+17
-0
texture.c
dlls/d3dx9_36/texture.c
+5
-5
No files found.
dlls/d3dx9_36/tests/texture.c
View file @
3728a882
...
...
@@ -1149,6 +1149,22 @@ static void test_D3DXCreateTextureFromFileInMemory(IDirect3DDevice9 *device)
ok
(
hr
==
D3DXERR_INVALIDDATA
,
"D3DXCreateTextureFromFileInMemory returned %#x, expected %#x
\n
"
,
hr
,
D3DXERR_INVALIDDATA
);
}
static
void
test_D3DXCreateTextureFromFileInMemoryEx
(
IDirect3DDevice9
*
device
)
{
HRESULT
hr
;
IDirect3DTexture9
*
texture
;
hr
=
D3DXCreateTextureFromFileInMemoryEx
(
device
,
dds_16bit
,
sizeof
(
dds_16bit
),
D3DX_DEFAULT
,
D3DX_DEFAULT
,
D3DX_DEFAULT
,
0
,
D3DFMT_UNKNOWN
,
D3DPOOL_DEFAULT
,
D3DX_DEFAULT
,
D3DX_DEFAULT
,
0
,
NULL
,
NULL
,
&
texture
);
ok
(
hr
==
D3D_OK
,
"D3DXCreateTextureFromFileInMemoryEx returned %#x, expected %#x
\n
"
,
hr
,
D3D_OK
);
if
(
SUCCEEDED
(
hr
))
IDirect3DTexture9_Release
(
texture
);
hr
=
D3DXCreateTextureFromFileInMemoryEx
(
device
,
dds_16bit
,
sizeof
(
dds_16bit
),
D3DX_DEFAULT
,
D3DX_DEFAULT
,
D3DX_DEFAULT
,
D3DUSAGE_DYNAMIC
,
D3DFMT_UNKNOWN
,
D3DPOOL_DEFAULT
,
D3DX_DEFAULT
,
D3DX_DEFAULT
,
0
,
NULL
,
NULL
,
&
texture
);
ok
(
hr
==
D3D_OK
,
"D3DXCreateTextureFromFileInMemoryEx returned %#x, expected %#x
\n
"
,
hr
,
D3D_OK
);
if
(
SUCCEEDED
(
hr
))
IDirect3DTexture9_Release
(
texture
);
}
static
void
test_D3DXCreateCubeTextureFromFileInMemory
(
IDirect3DDevice9
*
device
)
{
HRESULT
hr
;
...
...
@@ -1273,6 +1289,7 @@ START_TEST(texture)
test_D3DXFillCubeTexture
(
device
);
test_D3DXFillVolumeTexture
(
device
);
test_D3DXCreateTextureFromFileInMemory
(
device
);
test_D3DXCreateTextureFromFileInMemoryEx
(
device
);
test_D3DXCreateCubeTextureFromFileInMemory
(
device
);
test_D3DXCreateVolumeTextureFromFileInMemory
(
device
);
...
...
dlls/d3dx9_36/texture.c
View file @
3728a882
...
...
@@ -590,15 +590,15 @@ HRESULT WINAPI D3DXCreateTextureFromFileInMemoryEx(LPDIRECT3DDEVICE9 device,
return
D3DERR_INVALIDCALL
;
/* Create the to-be-filled texture */
if
(
(
caps
.
Caps2
&
D3DCAPS2_DYNAMICTEXTURES
)
&&
(
pool
!=
D3DPOOL_DEFAULT
)
&&
(
usage
!
=
D3DUSAGE_DYNAMIC
))
if
(
pool
==
D3DPOOL_DEFAULT
&&
!
((
caps
.
Caps2
&
D3DCAPS2_DYNAMICTEXTURES
)
&&
usage
=
=
D3DUSAGE_DYNAMIC
))
{
hr
=
D3DXCreateTexture
(
device
,
width
,
height
,
miplevels
,
usage
,
format
,
pool
,
texture
);
texptr
=
texture
;
hr
=
D3DXCreateTexture
(
device
,
width
,
height
,
miplevels
,
usage
,
format
,
D3DPOOL_SYSTEMMEM
,
&
buftex
);
texptr
=
&
buftex
;
}
else
{
hr
=
D3DXCreateTexture
(
device
,
width
,
height
,
miplevels
,
usage
,
format
,
D3DPOOL_SYSTEMMEM
,
&
buftex
);
texptr
=
&
buftex
;
hr
=
D3DXCreateTexture
(
device
,
width
,
height
,
miplevels
,
usage
,
format
,
pool
,
texture
);
texptr
=
texture
;
}
if
(
FAILED
(
hr
))
...
...
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