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
9b75356f
Commit
9b75356f
authored
Jul 10, 2005
by
Oliver Stieber
Committed by
Alexandre Julliard
Jul 10, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Tidy up the way caps are managed in GetDeviceCaps and FillGlCaps.
parent
bc005b14
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
3 deletions
+16
-3
directx.c
dlls/wined3d/directx.c
+0
-0
wined3d_gl.h
include/wine/wined3d_gl.h
+16
-3
No files found.
dlls/wined3d/directx.c
View file @
9b75356f
This diff is collapsed.
Click to expand it.
include/wine/wined3d_gl.h
View file @
9b75356f
...
...
@@ -659,6 +659,14 @@ typedef void (APIENTRY * PGLFNGETCOMBINERSTAGEPARAMETERFVNVPROC) (GLenum stage,
/* #define ZERO */
#endif
/* Point sprites */
#ifndef GL_ARB_point_sprite
#define GL_ARB_point_sprite 1
#define GL_POINT_SPRITE_ARB 0x8861
#define GL_COORD_REPLACE_ARB 0x8862
#endif
/****************************************************
* OpenGL Official Version
* defines
...
...
@@ -755,6 +763,7 @@ typedef enum _GL_SupportedExt {
ARB_MULTISAMPLE
,
ARB_MULTITEXTURE
,
ARB_POINT_PARAMETERS
,
ARB_POINT_SPRITE
,
ARB_TEXTURE_COMPRESSION
,
ARB_TEXTURE_CUBE_MAP
,
ARB_TEXTURE_ENV_ADD
,
...
...
@@ -878,13 +887,17 @@ typedef struct _WineD3D_GL_Info {
GL_Cards
gl_card
;
DWORD
gl_driver_version
;
CHAR
gl_renderer
[
255
];
/**
/**
* CAPS Constants
*/
UINT
max_lights
;
UINT
max_textures
;
UINT
max_samplers
;
UINT
max_clipplanes
;
UINT
max_texture_size
;
float
max_pointsize
;
UINT
max_blends
;
UINT
max_anisotropy
;
GL_PSVersion
ps_arb_version
;
GL_PSVersion
ps_nv_version
;
...
...
@@ -892,8 +905,8 @@ typedef struct _WineD3D_GL_Info {
GL_VSVersion
vs_arb_version
;
GL_VSVersion
vs_nv_version
;
GL_VSVersion
vs_ati_version
;
BOOL
supported
[
50
];
BOOL
supported
[
OPENGL_SUPPORTED_EXT_END
+
1
];
/** OpenGL EXT and ARB functions ptr */
GL_EXT_FUNCS_GEN
;
...
...
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