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
894a705c
Commit
894a705c
authored
Nov 06, 2007
by
Stefan Dösinger
Committed by
Alexandre Julliard
Nov 12, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Load GL_EXT_texture3D from gl 1.2 if the extension is not there.
parent
c25a7929
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
directx.c
dlls/wined3d/directx.c
+1
-1
wined3d_gl.h
include/wine/wined3d_gl.h
+2
-2
No files found.
dlls/wined3d/directx.c
View file @
894a705c
...
...
@@ -91,7 +91,7 @@ static const struct {
{
"GL_EXT_secondary_color"
,
EXT_SECONDARY_COLOR
,
0
},
{
"GL_EXT_stencil_two_side"
,
EXT_STENCIL_TWO_SIDE
,
0
},
{
"GL_EXT_stencil_wrap"
,
EXT_STENCIL_WRAP
,
0
},
{
"GL_EXT_texture3D"
,
EXT_TEXTURE3D
,
0
},
{
"GL_EXT_texture3D"
,
EXT_TEXTURE3D
,
MAKEDWORD_VERSION
(
1
,
2
)
},
{
"GL_EXT_texture_compression_s3tc"
,
EXT_TEXTURE_COMPRESSION_S3TC
,
0
},
{
"GL_EXT_texture_env_add"
,
EXT_TEXTURE_ENV_ADD
,
0
},
{
"GL_EXT_texture_env_combine"
,
EXT_TEXTURE_ENV_COMBINE
,
0
},
...
...
include/wine/wined3d_gl.h
View file @
894a705c
...
...
@@ -3328,8 +3328,8 @@ typedef enum _GL_SupportedExt {
USE_GL_FUNC(PGLFNGLSECONDARYCOLOR3FVEXTPROC, glSecondaryColor3fvEXT, EXT_SECONDARY_COLOR, NULL );\
USE_GL_FUNC(PGLFNGLSECONDARYCOLORPOINTEREXTPROC, glSecondaryColorPointerEXT, EXT_SECONDARY_COLOR, NULL );\
/* GL_EXT_texture3D */
\
USE_GL_FUNC(PGLFNGLTEXIMAGE3DEXTPROC, glTexImage3DEXT, EXT_TEXTURE3D,
NULL
);\
USE_GL_FUNC(PGLFNGLTEXSUBIMAGE3DEXTPROC, glTexSubImage3DEXT, EXT_TEXTURE3D,
NULL
);\
USE_GL_FUNC(PGLFNGLTEXIMAGE3DEXTPROC, glTexImage3DEXT, EXT_TEXTURE3D,
glTexImage3D
);\
USE_GL_FUNC(PGLFNGLTEXSUBIMAGE3DEXTPROC, glTexSubImage3DEXT, EXT_TEXTURE3D,
glTexSubImage3D
);\
/* GL_ARB_vertex_program */
\
USE_GL_FUNC(PGLFNGENPROGRAMSARBPROC, glGenProgramsARB, ARB_VERTEX_PROGRAM, NULL );\
USE_GL_FUNC(PGLFNBINDPROGRAMARBPROC, glBindProgramARB, ARB_VERTEX_PROGRAM, 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