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
73d03f85
Commit
73d03f85
authored
Jul 15, 2015
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Sep 16, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3dx10_43: Add ID3DX10ThreadPump interface.
parent
b305000f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
67 additions
and
0 deletions
+67
-0
Makefile.in
include/Makefile.in
+1
-0
d3dx10core.idl
include/d3dx10core.idl
+66
-0
No files found.
include/Makefile.in
View file @
73d03f85
...
...
@@ -32,6 +32,7 @@ PUBLIC_IDL_H_SRCS = \
d3d11_1.idl
\
d3d11sdklayers.idl
\
d3dcommon.idl
\
d3dx10core.idl
\
ddstream.idl
\
devicetopology.idl
\
dimm.idl
\
...
...
include/d3dx10core.idl
0 → 100644
View file @
73d03f85
/*
*
Copyright
2015
Alistair
Leslie
-
Hughes
*
*
This
library
is
free
software
; you can redistribute it and/or
*
modify
it
under
the
terms
of
the
GNU
Lesser
General
Public
*
License
as
published
by
the
Free
Software
Foundation
; either
*
version
2.1
of
the
License
,
or
(
at
your
option
)
any
later
version
.
*
*
This
library
is
distributed
in
the
hope
that
it
will
be
useful
,
*
but
WITHOUT
ANY
WARRANTY
; without even the implied warranty of
*
MERCHANTABILITY
or
FITNESS
FOR
A
PARTICULAR
PURPOSE
.
See
the
GNU
*
Lesser
General
Public
License
for
more
details
.
*
*
You
should
have
received
a
copy
of
the
GNU
Lesser
General
Public
*
License
along
with
this
library
; if not, write to the Free Software
*
Foundation
,
Inc
.
,
51
Franklin
St
,
Fifth
Floor
,
Boston
,
MA
02110
-
1301
,
USA
*/
import
"oaidl.idl"
;
import
"ocidl.idl"
;
import
"dxgi.idl"
;
import
"d3dcommon.idl"
;
[
object
,
local
,
pointer_default
(
unique
)
]
interface
ID3DX10DataLoader
{
HRESULT
Load
()
;
HRESULT
Decompress
(
[
out
]
void
**
data
,
[
in
]
SIZE_T
*
bytes
)
;
HRESULT
Destroy
()
;
}
;
[
object
,
local
,
pointer_default
(
unique
)
]
interface
ID3DX10DataProcessor
{
HRESULT
Process
(
[
in
]
void
*
data
,
[
in
]
SIZE_T
bytes
)
;
HRESULT
CreateDeviceObject
(
[
out
]
void
**
dataobject
)
;
HRESULT
Destroy
()
;
}
;
[
object
,
local
,
pointer_default
(
unique
),
uuid
(
c93fecfa
-
6967
-
478
a
-
abbc
-
402
d90621fcb
)
]
interface
ID3DX10ThreadPump
:
IUnknown
{
HRESULT
AddWorkItem
(
[
in
]
ID3DX10DataLoader
*
loader
,
[
in
]
ID3DX10DataProcessor
*
processor
,
[
in
]
HRESULT
*
result
,
[
out
]
void
**
object
)
;
UINT
GetWorkItemCount
()
;
HRESULT
WaitForAllItems
()
;
HRESULT
ProcessDeviceWorkItems
(
[
in
]
UINT
count
)
;
HRESULT
PurgeAllItems
()
;
HRESULT
GetQueueStatus
(
[
in
]
UINT
*
queue
,
[
in
]
UINT
*
processqueue
,
[
in
]
UINT
*
devicequeue
)
;
}
;
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