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
8b1fe34a
Commit
8b1fe34a
authored
Apr 06, 2017
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
glu32: Implement gluGetTessProperty.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
488bdbaf
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
glu.c
dlls/glu32/glu.c
+9
-0
glu32.spec
dlls/glu32/glu32.spec
+1
-1
No files found.
dlls/glu32/glu.c
View file @
8b1fe34a
...
...
@@ -90,6 +90,7 @@ static void (*p_gluEndTrim)( GLUnurbs* nurb );
static
const
GLubyte
*
(
*
p_gluErrorString
)(
GLenum
error
);
static
void
(
*
p_gluGetNurbsProperty
)(
GLUnurbs
*
nurb
,
GLenum
property
,
GLfloat
*
data
);
static
const
GLubyte
*
(
*
p_gluGetString
)(
GLenum
name
);
static
void
(
*
p_gluGetTessProperty
)(
GLUtesselator
*
tess
,
GLenum
which
,
GLdouble
*
data
);
static
void
(
*
p_gluLoadSamplingMatrices
)(
GLUnurbs
*
nurb
,
const
GLfloat
*
model
,
const
GLfloat
*
perspective
,
const
GLint
*
view
);
static
void
(
*
p_gluLookAt
)(
GLdouble
eyeX
,
GLdouble
eyeY
,
GLdouble
eyeZ
,
GLdouble
centerX
,
GLdouble
centerY
,
GLdouble
centerZ
,
GLdouble
upX
,
GLdouble
upY
,
GLdouble
upZ
);
static
GLUnurbs
*
(
*
p_gluNewNurbsRenderer
)(
void
);
...
...
@@ -149,6 +150,7 @@ static BOOL load_libglu(void)
LOAD_FUNCPTR
(
gluErrorString
);
LOAD_FUNCPTR
(
gluGetNurbsProperty
);
LOAD_FUNCPTR
(
gluGetString
);
LOAD_FUNCPTR
(
gluGetTessProperty
);
LOAD_FUNCPTR
(
gluLoadSamplingMatrices
);
LOAD_FUNCPTR
(
gluLookAt
);
LOAD_FUNCPTR
(
gluNewNurbsRenderer
);
...
...
@@ -716,6 +718,13 @@ void WINAPI wine_gluTessVertex( wine_GLUtesselator *tess, GLdouble coords[3], vo
p_gluTessVertex
(
tess
->
tess
,
coords
,
data
);
}
/***********************************************************************
* gluGetTessProperty (GLU32.@)
*/
void
WINAPI
wine_gluGetTessProperty
(
wine_GLUtesselator
*
tess
,
GLenum
which
,
GLdouble
*
value
)
{
p_gluGetTessProperty
(
tess
->
tess
,
which
,
value
);
}
/***********************************************************************
* gluTessProperty (GLU32.@)
...
...
dlls/glu32/glu32.spec
View file @
8b1fe34a
...
...
@@ -18,7 +18,7 @@
@ stub gluErrorUnicodeStringEXT
@ stdcall gluGetNurbsProperty(ptr long ptr) wine_gluGetNurbsProperty
@ stdcall gluGetString(long) wine_gluGetString
@ st
ub
gluGetTessProperty
@ st
dcall gluGetTessProperty(ptr long ptr) wine_
gluGetTessProperty
@ stdcall gluLoadSamplingMatrices(ptr ptr ptr ptr) wine_gluLoadSamplingMatrices
@ stdcall gluLookAt(double double double double double double double double double) wine_gluLookAt
@ stdcall gluNewNurbsRenderer() wine_gluNewNurbsRenderer
...
...
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