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
1a0fc895
Commit
1a0fc895
authored
Jul 23, 2015
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Aug 17, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3dcompiler: Add D3DCompileFromFile, D3DCompile2 stubs.
parent
2cfe3cac
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
2 deletions
+11
-2
compiler.c
dlls/d3dcompiler_43/compiler.c
+9
-0
d3dcompiler_46.spec
dlls/d3dcompiler_46/d3dcompiler_46.spec
+1
-1
d3dcompiler_47.spec
dlls/d3dcompiler_47/d3dcompiler_47.spec
+1
-1
No files found.
dlls/d3dcompiler_43/compiler.c
View file @
1a0fc895
...
...
@@ -763,3 +763,12 @@ HRESULT WINAPI D3DDisassemble(const void *data, SIZE_T size, UINT flags, const c
data
,
size
,
flags
,
comments
,
disassembly
);
return
E_NOTIMPL
;
}
HRESULT
WINAPI
D3DCompileFromFile
(
const
WCHAR
*
filename
,
const
D3D_SHADER_MACRO
*
defines
,
ID3DInclude
*
includes
,
const
char
*
entrypoint
,
const
char
*
target
,
UINT
flags1
,
UINT
flags2
,
ID3DBlob
**
code
,
ID3DBlob
**
errors
)
{
FIXME
(
"filename %s, defines %p, includes %p, entrypoint %s, target %s, flags1 %x, flags2 %x, code %p, errors %p
\n
"
,
debugstr_w
(
filename
),
defines
,
includes
,
debugstr_a
(
entrypoint
),
debugstr_a
(
target
),
flags1
,
flags2
,
code
,
errors
);
return
E_NOTIMPL
;
}
dlls/d3dcompiler_46/d3dcompiler_46.spec
View file @
1a0fc895
@ stdcall D3DAssemble(ptr long str ptr ptr long ptr ptr)
@ stdcall D3DCompile(ptr long str ptr ptr str str long long ptr ptr)
@ stub D3DCompile2
@ st
ub D3DCompileFromFile
@ st
dcall D3DCompileFromFile(wstr ptr ptr str str long long ptr ptr)
@ stub D3DCompressShaders
@ stdcall D3DCreateBlob(long ptr)
@ stub D3DDecompressShaders
...
...
dlls/d3dcompiler_47/d3dcompiler_47.spec
View file @
1a0fc895
@ stdcall D3DAssemble(ptr long str ptr ptr long ptr ptr)
@ stdcall D3DCompile(ptr long str ptr ptr str str long long ptr ptr)
@ stub D3DCompile2
@ st
ub D3DCompileFromFile
@ st
dcall D3DCompileFromFile(wstr ptr ptr str str long long ptr ptr)
@ stub D3DCompressShaders
@ stdcall D3DCreateBlob(long ptr)
@ stub D3DCreateFunctionLinkingGraph
...
...
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