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
2843e4d3
Commit
2843e4d3
authored
Nov 20, 2018
by
Henri Verbeet
Committed by
Alexandre Julliard
Nov 20, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3d9: Disallow index buffers in the scratch pool.
Signed-off-by:
Henri Verbeet
<
hverbeet@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
28324c5b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
buffer.c
dlls/d3d9/buffer.c
+3
-0
device.c
dlls/d3d9/tests/device.c
+1
-1
No files found.
dlls/d3d9/buffer.c
View file @
2843e4d3
...
...
@@ -572,6 +572,9 @@ HRESULT indexbuffer_init(struct d3d9_indexbuffer *buffer, struct d3d9_device *de
struct
wined3d_buffer_desc
desc
;
HRESULT
hr
;
if
(
pool
==
D3DPOOL_SCRATCH
)
return
D3DERR_INVALIDCALL
;
desc
.
byte_width
=
size
;
desc
.
usage
=
(
usage
&
WINED3DUSAGE_MASK
)
|
WINED3DUSAGE_STATICDECL
;
if
(
pool
==
D3DPOOL_SCRATCH
)
...
...
dlls/d3d9/tests/device.c
View file @
2843e4d3
...
...
@@ -12967,7 +12967,7 @@ static void test_resource_access(void)
hr
=
IDirect3DDevice9_CreateIndexBuffer
(
device
,
16
,
tests
[
i
].
usage
,
tests
[
i
].
format
==
FORMAT_COLOUR
?
D3DFMT_INDEX32
:
D3DFMT_INDEX16
,
tests
[
i
].
pool
,
&
ib
,
NULL
);
todo_wine_if
(
tests
[
i
].
pool
==
D3DPOOL_SCRATCH
||
tests
[
i
].
usage
&
~
D3DUSAGE_DYNAMIC
)
todo_wine_if
(
tests
[
i
].
pool
!=
D3DPOOL_SCRATCH
&&
tests
[
i
].
usage
&
~
D3DUSAGE_DYNAMIC
)
ok
(
hr
==
(
tests
[
i
].
pool
==
D3DPOOL_SCRATCH
||
(
tests
[
i
].
usage
&
~
D3DUSAGE_DYNAMIC
)
?
D3DERR_INVALIDCALL
:
D3D_OK
),
"Test %u: Got unexpected hr %#x.
\n
"
,
i
,
hr
);
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