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
7b5e05a9
Commit
7b5e05a9
authored
Oct 12, 2010
by
Rico Schüller
Committed by
Alexandre Julliard
Oct 13, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3dcompiler: Add D3D_BLOB_ALL_SIGNATURE_BLOB to D3DGetBlobPart().
parent
3cbb7266
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
blob.c
dlls/d3dcompiler_43/blob.c
+8
-0
No files found.
dlls/d3dcompiler_43/blob.c
View file @
7b5e05a9
...
...
@@ -141,6 +141,10 @@ static BOOL check_blob_part(DWORD tag, D3D_BLOB_PART part)
if
(
tag
==
TAG_PCSG
)
add
=
TRUE
;
break
;
case
D3D_BLOB_ALL_SIGNATURE_BLOB
:
if
(
tag
==
TAG_ISGN
||
tag
==
TAG_OSGN
||
tag
==
TAG_PCSG
)
add
=
TRUE
;
break
;
case
D3D_BLOB_DEBUG_INFO
:
if
(
tag
==
TAG_SDBG
)
add
=
TRUE
;
break
;
...
...
@@ -221,6 +225,10 @@ HRESULT d3dcompiler_get_blob_part(const void *data, SIZE_T data_size, D3D_BLOB_P
if
(
count
!=
2
)
count
=
0
;
break
;
case
D3D_BLOB_ALL_SIGNATURE_BLOB
:
if
(
count
!=
3
)
count
=
0
;
break
;
default:
FIXME
(
"Unhandled D3D_BLOB_PART %s.
\n
"
,
debug_d3dcompiler_d3d_blob_part
(
part
));
break
;
...
...
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