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
4b268c79
Commit
4b268c79
authored
Dec 16, 2008
by
Stefan Dösinger
Committed by
Alexandre Julliard
Dec 16, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Some GL_EXT_fog_coord prototype fixes.
parent
0dc0444c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
wined3d_gl.h
dlls/wined3d/wined3d_gl.h
+5
-5
No files found.
dlls/wined3d/wined3d_gl.h
View file @
4b268c79
...
...
@@ -2288,10 +2288,10 @@ typedef void (WINE_GLAPI * PGLFNBLENDEQUATIONSEPARATEEXTPROC) (GLenum modeRGB, G
#define GL_FOG_COORDINATE_ARRAY_POINTER_EXT 0x8456
#define GL_FOG_COORDINATE_ARRAY_EXT 0x8457
#endif
/* GL_EXT_fog_coord */
typedef
void
(
WINE_GLAPI
*
PGLFNGLFOGCOORDFEXTPROC
)
(
GLfloat
intesity
);
typedef
void
(
WINE_GLAPI
*
PGLFNGLFOGCOORDFVEXTPROC
)
(
GLfloat
intesity
);
typedef
void
(
WINE_GLAPI
*
PGLFNGLFOGCOORDDEXTPROC
)
(
GL
float
intesity
);
typedef
void
(
WINE_GLAPI
*
PGLFNGLFOGCOORDDVEXTPROC
)
(
GLfloat
intesity
);
typedef
void
(
WINE_GLAPI
*
PGLFNGLFOGCOORDFEXTPROC
)
(
GLfloat
coord
);
typedef
void
(
WINE_GLAPI
*
PGLFNGLFOGCOORDFVEXTPROC
)
(
const
GLfloat
*
coord
);
typedef
void
(
WINE_GLAPI
*
PGLFNGLFOGCOORDDEXTPROC
)
(
GL
double
coord
);
typedef
void
(
WINE_GLAPI
*
PGLFNGLFOGCOORDDVEXTPROC
)
(
const
GLdouble
*
coord
);
typedef
void
(
WINE_GLAPI
*
PGLFNGLFOGCOORDPOINTEREXTPROC
)
(
GLenum
type
,
GLsizei
stride
,
GLvoid
*
data
);
/* GL_ARB_shader_objects (GLSL) */
#ifndef GL_ARB_shader_objects
...
...
@@ -3471,7 +3471,7 @@ typedef enum _GL_SupportedExt {
USE_GL_FUNC(PGLFNGLFOGCOORDFEXTPROC, glFogCoordfEXT, EXT_FOG_COORD, NULL )\
USE_GL_FUNC(PGLFNGLFOGCOORDFVEXTPROC, glFogCoordfvEXT, EXT_FOG_COORD, NULL )\
USE_GL_FUNC(PGLFNGLFOGCOORDDEXTPROC, glFogCoorddEXT, EXT_FOG_COORD, NULL )\
USE_GL_FUNC(PGLFNGLFOGCOORDDVEXTPROC, glFogCoord
vEXT,
EXT_FOG_COORD, NULL )\
USE_GL_FUNC(PGLFNGLFOGCOORDDVEXTPROC, glFogCoord
dvEXT,
EXT_FOG_COORD, NULL )\
USE_GL_FUNC(PGLFNGLFOGCOORDPOINTEREXTPROC, glFogCoordPointerEXT, EXT_FOG_COORD, NULL )\
/* GL_EXT_framebuffer_object */
\
USE_GL_FUNC(PGLFNGLISRENDERBUFFEREXTPROC, glIsRenderbufferEXT, EXT_FRAMEBUFFER_OBJECT, NULL )\
...
...
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