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
976b4e96
Commit
976b4e96
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_LEGACY_SHADER to D3DGetBlobPart().
parent
7b5e05a9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
blob.c
dlls/d3dcompiler_43/blob.c
+6
-1
d3dcompiler_private.h
dlls/d3dcompiler_43/d3dcompiler_private.h
+1
-0
No files found.
dlls/d3dcompiler_43/blob.c
View file @
976b4e96
...
...
@@ -149,6 +149,10 @@ static BOOL check_blob_part(DWORD tag, D3D_BLOB_PART part)
if
(
tag
==
TAG_SDBG
)
add
=
TRUE
;
break
;
case
D3D_BLOB_LEGACY_SHADER
:
if
(
tag
==
TAG_Aon9
)
add
=
TRUE
;
break
;
default:
FIXME
(
"Unhandled D3D_BLOB_PART %s.
\n
"
,
debug_d3dcompiler_d3d_blob_part
(
part
));
break
;
...
...
@@ -218,6 +222,7 @@ HRESULT d3dcompiler_get_blob_part(const void *data, SIZE_T data_size, D3D_BLOB_P
case
D3D_BLOB_OUTPUT_SIGNATURE_BLOB
:
case
D3D_BLOB_PATCH_CONSTANT_SIGNATURE_BLOB
:
case
D3D_BLOB_DEBUG_INFO
:
case
D3D_BLOB_LEGACY_SHADER
:
if
(
count
!=
1
)
count
=
0
;
break
;
...
...
@@ -243,7 +248,7 @@ HRESULT d3dcompiler_get_blob_part(const void *data, SIZE_T data_size, D3D_BLOB_P
}
/* some parts aren't full DXBCs, they contain only the data */
if
(
count
==
1
&&
(
part
==
D3D_BLOB_DEBUG_INFO
))
if
(
count
==
1
&&
(
part
==
D3D_BLOB_DEBUG_INFO
||
part
==
D3D_BLOB_LEGACY_SHADER
))
{
hr
=
D3DCreateBlob
(
dst_dxbc
.
sections
[
0
].
data_size
,
blob
);
if
(
SUCCEEDED
(
hr
))
...
...
dlls/d3dcompiler_43/d3dcompiler_private.h
View file @
976b4e96
...
...
@@ -580,6 +580,7 @@ void SlDeleteShader(struct bwriter_shader *shader);
#define MAKE_TAG(ch0, ch1, ch2, ch3) \
((DWORD)(ch0) | ((DWORD)(ch1) << 8) | \
((DWORD)(ch2) << 16) | ((DWORD)(ch3) << 24 ))
#define TAG_Aon9 MAKE_TAG('A', 'o', 'n', '9')
#define TAG_DXBC MAKE_TAG('D', 'X', 'B', 'C')
#define TAG_ISGN MAKE_TAG('I', 'S', 'G', 'N')
#define TAG_OSGN MAKE_TAG('O', 'S', 'G', 'N')
...
...
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