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
f9ee2355
Commit
f9ee2355
authored
Mar 31, 2007
by
Stefan Dösinger
Committed by
Alexandre Julliard
Apr 02, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Add GL_APPLE_client_storage to our extension list.
parent
71971409
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
directx.c
dlls/wined3d/directx.c
+2
-0
wined3d_gl.h
include/wine/wined3d_gl.h
+6
-1
No files found.
dlls/wined3d/directx.c
View file @
f9ee2355
...
...
@@ -812,6 +812,8 @@ BOOL IWineD3DImpl_FillGLCaps(IWineD3D *iface, Display* display) {
*/
gl_info
->
supported
[
NV_FENCE
]
=
FALSE
;
gl_info
->
supported
[
APPLE_FENCE
]
=
TRUE
;
}
else
if
(
strstr
(
ThisExtn
,
"GL_APPLE_client_storage"
))
{
gl_info
->
supported
[
APPLE_CLIENT_STORAGE
]
=
TRUE
;
}
if
(
*
GL_Extensions
==
' '
)
GL_Extensions
++
;
...
...
include/wine/wined3d_gl.h
View file @
f9ee2355
...
...
@@ -1147,7 +1147,7 @@ typedef void (APIENTRY * PGLFNFINISHFENCENVPROC) (GLuint);
typedef
GLboolean
(
APIENTRY
*
PGLFNISFENCENVPROC
)
(
GLuint
);
typedef
void
(
APIENTRY
*
PGLFNGETFENCEIVNVPROC
)
(
GLuint
,
GLenum
,
GLint
*
);
/* GL_APPLE_fence */
#ifndef GL_
NV
_fence
#ifndef GL_
APPLE
_fence
#define GL_DRAW_PIXELS_APPLE 0x8A0A
#define GL_FENCE_APPLE 0x84F3
#endif
...
...
@@ -1159,6 +1159,10 @@ typedef void (APIENTRY * PGLFNFINISHFENCEAPPLEPROC) (GLuint);
typedef
GLboolean
(
APIENTRY
*
PGLFNISFENCEAPPLEPROC
)
(
GLuint
);
typedef
GLboolean
(
APIENTRY
*
PGLFNTESTOBJECTAPPLEPROC
)
(
GLenum
,
GLuint
);
typedef
void
(
APIENTRY
*
PGLFNFINISHOBJECTAPPLEPROC
)
(
GLenum
,
GLuint
);
/* GL_APPLE_client_storage */
#ifndef GL_APPLE_client_storage
#define GL_UNPACK_CLIENT_STORAGE_APPLE 0x85B2
#endif
/* GL_ATI_envmap_bumpmap */
#ifndef GL_ATI_envmap_bumpmap
#define GL_BUMP_ROT_MATRIX_ATI 0x8775
...
...
@@ -1540,6 +1544,7 @@ typedef enum _GL_SupportedExt {
ATI_ENVMAP_BUMPMAP
,
/* APPLE */
APPLE_FENCE
,
APPLE_CLIENT_STORAGE
,
OPENGL_SUPPORTED_EXT_END
}
GL_SupportedExt
;
...
...
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