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
7b49ddba
Commit
7b49ddba
authored
Jul 11, 2011
by
Jacek Caban
Committed by
Alexandre Julliard
Jul 11, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3d10.idl: Added CD3D10_TEXTURE1D_DESC declaration.
parent
eeacb8f2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
0 deletions
+23
-0
d3d10.idl
include/d3d10.idl
+23
-0
No files found.
include/d3d10.idl
View file @
7b49ddba
...
...
@@ -514,6 +514,29 @@ typedef struct D3D10_TEXTURE1D_DESC {
UINT
MiscFlags
;
}
D3D10_TEXTURE1D_DESC
;
cpp_quote
(
"#if !defined(D3D10_NO_HELPERS) && defined(__cplusplus)"
)
cpp_quote
(
"struct CD3D10_TEXTURE1D_DESC : public D3D10_TEXTURE1D_DESC {"
)
cpp_quote
(
" CD3D10_TEXTURE1D_DESC() {}"
)
cpp_quote
(
" explicit CD3D10_TEXTURE1D_DESC(const D3D10_TEXTURE1D_DESC &o) : D3D10_TEXTURE1D_DESC(o) {}"
)
cpp_quote
(
" explicit CD3D10_TEXTURE1D_DESC(DXGI_FORMAT format, UINT width, UINT arraySize = 1, UINT mipLevels = 0,"
)
cpp_quote
(
" UINT bindFlags = D3D10_BIND_SHADER_RESOURCE, D3D10_USAGE usage = D3D10_USAGE_DEFAULT, UINT cpuaccessFlags = 0,"
)
cpp_quote
(
" UINT miscFlags = 0) {"
)
cpp_quote
(
" Width = width;"
)
cpp_quote
(
" MipLevels = mipLevels;"
)
cpp_quote
(
" ArraySize = arraySize;"
)
cpp_quote
(
" Format = format;"
)
cpp_quote
(
" Usage = usage;"
)
cpp_quote
(
" BindFlags = bindFlags;"
)
cpp_quote
(
" CPUAccessFlags = cpuaccessFlags;"
)
cpp_quote
(
" MiscFlags = miscFlags;"
)
cpp_quote
(
" }"
)
cpp_quote
(
" ~CD3D10_TEXTURE1D_DESC() {}"
)
cpp_quote
(
" operator const D3D10_TEXTURE1D_DESC&() const {"
)
cpp_quote
(
" return *this;"
)
cpp_quote
(
" }"
)
cpp_quote
(
"};"
)
cpp_quote
(
"#endif"
)
typedef
struct
D3D10_TEXTURE2D_DESC
{
UINT
Width
;
UINT
Height
;
...
...
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