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
b82fab89
Commit
b82fab89
authored
Jul 20, 2015
by
Christian Costa
Committed by
Alexandre Julliard
Jul 21, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3dx9_36: Add stub for D3DXIntersect.
parent
05390ccc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletion
+13
-1
d3dx9_36.spec
dlls/d3dx9_36/d3dx9_36.spec
+1
-1
mesh.c
dlls/d3dx9_36/mesh.c
+12
-0
No files found.
dlls/d3dx9_36/d3dx9_36.spec
View file @
b82fab89
...
@@ -165,7 +165,7 @@
...
@@ -165,7 +165,7 @@
@ stdcall D3DXGetShaderSize(ptr)
@ stdcall D3DXGetShaderSize(ptr)
@ stdcall D3DXGetShaderVersion(ptr)
@ stdcall D3DXGetShaderVersion(ptr)
@ stdcall D3DXGetVertexShaderProfile(ptr)
@ stdcall D3DXGetVertexShaderProfile(ptr)
@ st
ub
D3DXIntersect(ptr ptr ptr ptr ptr ptr ptr ptr ptr ptr)
@ st
dcall
D3DXIntersect(ptr ptr ptr ptr ptr ptr ptr ptr ptr ptr)
@ stub D3DXIntersectSubset(ptr long ptr ptr ptr ptr ptr ptr ptr ptr ptr)
@ stub D3DXIntersectSubset(ptr long ptr ptr ptr ptr ptr ptr ptr ptr ptr)
@ stdcall D3DXIntersectTri(ptr ptr ptr ptr ptr ptr ptr ptr)
@ stdcall D3DXIntersectTri(ptr ptr ptr ptr ptr ptr ptr ptr)
@ stdcall D3DXLoadMeshFromXA(str long ptr ptr ptr ptr ptr ptr)
@ stdcall D3DXLoadMeshFromXA(str long ptr ptr ptr ptr ptr ptr)
...
...
dlls/d3dx9_36/mesh.c
View file @
b82fab89
...
@@ -7254,3 +7254,15 @@ HRESULT WINAPI D3DXComputeTangentFrameEx(ID3DXMesh *mesh, DWORD texture_in_seman
...
@@ -7254,3 +7254,15 @@ HRESULT WINAPI D3DXComputeTangentFrameEx(ID3DXMesh *mesh, DWORD texture_in_seman
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
/*************************************************************************
* D3DXIntersect (D3DX9_36.@)
*/
HRESULT
WINAPI
D3DXIntersect
(
ID3DXBaseMesh
*
mesh
,
const
D3DXVECTOR3
*
ray_pos
,
const
D3DXVECTOR3
*
ray_dir
,
BOOL
*
hit
,
DWORD
*
face_index
,
float
*
u
,
float
*
v
,
float
*
distance
,
ID3DXBuffer
**
all_hits
,
DWORD
*
count_of_hits
)
{
FIXME
(
"mesh %p, ray_pos %p, ray_dir %p, hit %p, face_index %p, u %p, v %p, distance %p, all_hits %p, "
"count_of_hits %p stub!
\n
"
,
mesh
,
ray_pos
,
ray_dir
,
hit
,
face_index
,
u
,
v
,
distance
,
all_hits
,
count_of_hits
);
return
E_NOTIMPL
;
}
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