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
cc6699f0
Commit
cc6699f0
authored
Dec 12, 2010
by
Rico Schüller
Committed by
Alexandre Julliard
Dec 13, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3dcompiler: Handle TAG_OSG5 in D3DGetBlobPart().
parent
47bb0de4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
blob.c
dlls/d3dcompiler_43/blob.c
+3
-3
d3dcompiler_private.h
dlls/d3dcompiler_43/d3dcompiler_private.h
+1
-0
No files found.
dlls/d3dcompiler_43/blob.c
View file @
cc6699f0
...
...
@@ -130,11 +130,11 @@ static BOOL check_blob_part(DWORD tag, D3D_BLOB_PART part)
break
;
case
D3D_BLOB_OUTPUT_SIGNATURE_BLOB
:
if
(
tag
==
TAG_OSGN
)
add
=
TRUE
;
if
(
tag
==
TAG_OSGN
||
tag
==
TAG_OSG5
)
add
=
TRUE
;
break
;
case
D3D_BLOB_INPUT_AND_OUTPUT_SIGNATURE_BLOB
:
if
(
tag
==
TAG_ISGN
||
tag
==
TAG_OSGN
)
add
=
TRUE
;
if
(
tag
==
TAG_ISGN
||
tag
==
TAG_OSGN
||
tag
==
TAG_OSG5
)
add
=
TRUE
;
break
;
case
D3D_BLOB_PATCH_CONSTANT_SIGNATURE_BLOB
:
...
...
@@ -142,7 +142,7 @@ static BOOL check_blob_part(DWORD tag, D3D_BLOB_PART part)
break
;
case
D3D_BLOB_ALL_SIGNATURE_BLOB
:
if
(
tag
==
TAG_ISGN
||
tag
==
TAG_OSGN
||
tag
==
TAG_PCSG
)
add
=
TRUE
;
if
(
tag
==
TAG_ISGN
||
tag
==
TAG_OSGN
||
tag
==
TAG_
OSG5
||
tag
==
TAG_
PCSG
)
add
=
TRUE
;
break
;
case
D3D_BLOB_DEBUG_INFO
:
...
...
dlls/d3dcompiler_43/d3dcompiler_private.h
View file @
cc6699f0
...
...
@@ -583,6 +583,7 @@ void SlDeleteShader(struct bwriter_shader *shader) DECLSPEC_HIDDEN;
#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')
#define TAG_OSG5 MAKE_TAG('O', 'S', 'G', '5')
#define TAG_PCSG MAKE_TAG('P', 'C', 'S', 'G')
#define TAG_RDEF MAKE_TAG('R', 'D', 'E', 'F')
#define TAG_SDBG MAKE_TAG('S', 'D', 'B', 'G')
...
...
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