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
d08f4fb5
Commit
d08f4fb5
authored
Jun 05, 2009
by
Henri Verbeet
Committed by
Alexandre Julliard
Jun 05, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Add support for EXT_packed_depth_stencil.
parent
a5876bb9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
0 deletions
+11
-0
directx.c
dlls/wined3d/directx.c
+1
-0
wined3d_gl.h
dlls/wined3d/wined3d_gl.h
+10
-0
No files found.
dlls/wined3d/directx.c
View file @
d08f4fb5
...
...
@@ -104,6 +104,7 @@ static const struct {
{
"GL_EXT_framebuffer_blit"
,
EXT_FRAMEBUFFER_BLIT
,
0
},
{
"GL_EXT_framebuffer_multisample"
,
EXT_FRAMEBUFFER_MULTISAMPLE
,
0
},
{
"GL_EXT_framebuffer_object"
,
EXT_FRAMEBUFFER_OBJECT
,
0
},
{
"GL_EXT_packed_depth_stencil"
,
EXT_PACKED_DEPTH_STENCIL
,
0
},
{
"GL_EXT_paletted_texture"
,
EXT_PALETTED_TEXTURE
,
0
},
{
"GL_EXT_point_parameters"
,
EXT_POINT_PARAMETERS
,
0
},
{
"GL_EXT_secondary_color"
,
EXT_SECONDARY_COLOR
,
0
},
...
...
dlls/wined3d/wined3d_gl.h
View file @
d08f4fb5
...
...
@@ -1897,6 +1897,15 @@ typedef void (WINE_GLAPI * PGLFNGLBLITFRAMEBUFFEREXTPROC) (GLint srcX0, GLint sr
#endif
typedef
void
(
WINE_GLAPI
*
PGLFNRENDERBUFFERSTORAGEMULTISAMPLEEXTPROC
)(
GLenum
target
,
GLsizei
samples
,
GLenum
internalformat
,
GLsizei
width
,
GLsizei
height
);
/* GL_EXT_packed_depth_stencil */
#ifndef GL_EXT_packed_depth_stencil
#define GL_EXT_packed_depth_stencil 1
#define GL_DEPTH_STENCIL_EXT 0x84f9
#define GL_UNSIGNED_INT_24_8_EXT 0x84fa
#define GL_DEPTH24_STENCIL8_EXT 0x88f0
#define GL_TEXTURE_STENCIL_SIZE_EXT 0x88f1
#endif
/* GL_EXT_secondary_color */
#ifndef GL_EXT_secondary_color
#define GL_EXT_secondary_color 1
...
...
@@ -3424,6 +3433,7 @@ typedef enum _GL_SupportedExt {
EXT_FRAMEBUFFER_OBJECT
,
EXT_FRAMEBUFFER_BLIT
,
EXT_FRAMEBUFFER_MULTISAMPLE
,
EXT_PACKED_DEPTH_STENCIL
,
EXT_PALETTED_TEXTURE
,
EXT_PIXEL_BUFFER_OBJECT
,
EXT_POINT_PARAMETERS
,
...
...
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