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
e403237f
Commit
e403237f
authored
Aug 18, 2005
by
Oliver Stieber
Committed by
Alexandre Julliard
Aug 18, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Pass all the d3d9 calls onto their wined3d equivalents.
parent
702c959c
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
17 deletions
+5
-17
d3d9_private.h
dlls/d3d9/d3d9_private.h
+5
-17
vertexshader.c
dlls/d3d9/vertexshader.c
+0
-0
No files found.
dlls/d3d9/d3d9_private.h
View file @
e403237f
...
@@ -186,7 +186,6 @@ typedef struct IDirect3DIndexBuffer9Impl IDirect3DIndexBuffer9Impl;
...
@@ -186,7 +186,6 @@ typedef struct IDirect3DIndexBuffer9Impl IDirect3DIndexBuffer9Impl;
typedef
struct
IDirect3DSurface9Impl
IDirect3DSurface9Impl
;
typedef
struct
IDirect3DSurface9Impl
IDirect3DSurface9Impl
;
typedef
struct
IDirect3DResource9Impl
IDirect3DResource9Impl
;
typedef
struct
IDirect3DResource9Impl
IDirect3DResource9Impl
;
typedef
struct
IDirect3DVolume9Impl
IDirect3DVolume9Impl
;
typedef
struct
IDirect3DVolume9Impl
IDirect3DVolume9Impl
;
typedef
struct
IDirect3DVertexShader9Impl
IDirect3DVertexShader9Impl
;
typedef
struct
IDirect3DVertexDeclaration9Impl
IDirect3DVertexDeclaration9Impl
;
typedef
struct
IDirect3DVertexDeclaration9Impl
IDirect3DVertexDeclaration9Impl
;
...
@@ -899,7 +898,7 @@ typedef struct IDirect3DStateBlock9Impl {
...
@@ -899,7 +898,7 @@ typedef struct IDirect3DStateBlock9Impl {
extern
const
IDirect3DVertexDeclaration9Vtbl
Direct3DVertexDeclaration9_Vtbl
;
extern
const
IDirect3DVertexDeclaration9Vtbl
Direct3DVertexDeclaration9_Vtbl
;
/*****************************************************************************
/*****************************************************************************
* IDirect3DVertex
Shader
Declaration implementation structure
* IDirect3DVertexDeclaration implementation structure
*/
*/
struct
IDirect3DVertexDeclaration9Impl
{
struct
IDirect3DVertexDeclaration9Impl
{
/* IUnknown fields */
/* IUnknown fields */
...
@@ -932,25 +931,14 @@ extern const IDirect3DVertexShader9Vtbl Direct3DVertexShader9_Vtbl;
...
@@ -932,25 +931,14 @@ extern const IDirect3DVertexShader9Vtbl Direct3DVertexShader9_Vtbl;
/*****************************************************************************
/*****************************************************************************
* IDirect3DVertexShader implementation structure
* IDirect3DVertexShader implementation structure
*/
*/
struct
IDirect3DVertexShader9Impl
{
typedef
struct
IDirect3DVertexShader9Impl
{
/* IUnknown fields */
/* IUnknown fields */
const
IDirect3DVertexShader9Vtbl
*
lpVtbl
;
const
IDirect3DVertexShader9Vtbl
*
lpVtbl
;
LONG
ref
;
LONG
ref
;
/* IDirect3DVertexDeclaration9 fields */
/* IDirect3DVertexShader9 fields */
IDirect3DDevice9Impl
*
Device
;
IWineD3DVertexShader
*
wineD3DVertexShader
;
}
IDirect3DVertexShader9Impl
;
DWORD
*
function
;
UINT
functionLength
;
DWORD
usage
;
/* 0 || D3DUSAGE_SOFTWAREPROCESSING */
DWORD
version
;
/* run time datas */
/*
VSHADERDATA* data;
VSHADERINPUTDATA input;
VSHADEROUTPUTDATA output;
*/
};
/* IUnknown: */
/* IUnknown: */
extern
HRESULT
WINAPI
IDirect3DVertexShader9Impl_QueryInterface
(
LPDIRECT3DVERTEXSHADER9
iface
,
REFIID
refiid
,
LPVOID
*
obj
);
extern
HRESULT
WINAPI
IDirect3DVertexShader9Impl_QueryInterface
(
LPDIRECT3DVERTEXSHADER9
iface
,
REFIID
refiid
,
LPVOID
*
obj
);
...
...
dlls/d3d9/vertexshader.c
View file @
e403237f
This diff is collapsed.
Click to expand it.
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