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
c475789b
Commit
c475789b
authored
Jul 01, 2009
by
Henri Verbeet
Committed by
Alexandre Julliard
Jul 01, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Move the driver_quirk structure to directx.c.
parent
50419daa
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
6 deletions
+7
-6
directx.c
dlls/wined3d/directx.c
+7
-0
wined3d_gl.h
dlls/wined3d/wined3d_gl.h
+0
-6
No files found.
dlls/wined3d/directx.c
View file @
c475789b
...
...
@@ -4203,6 +4203,13 @@ static void quirk_clip_varying(WineD3D_GL_Info *gl_info) {
gl_info
->
glsl_clip_varying
=
TRUE
;
}
struct
driver_quirk
{
BOOL
(
*
match
)(
const
WineD3D_GL_Info
*
gl_info
);
void
(
*
apply
)(
WineD3D_GL_Info
*
gl_info
);
const
char
*
description
;
};
struct
driver_quirk
quirk_table
[]
=
{
{
match_ati_r300_to_500
,
...
...
dlls/wined3d/wined3d_gl.h
View file @
c475789b
...
...
@@ -4016,10 +4016,4 @@ typedef struct _WineD3D_GL_Info {
}
WineD3D_GL_Info
;
#undef USE_GL_FUNC
struct
driver_quirk
{
BOOL
(
*
match
)(
const
WineD3D_GL_Info
*
gl_info
);
void
(
*
apply
)(
WineD3D_GL_Info
*
gl_info
);
const
char
*
description
;
};
#endif
/* __WINE_WINED3D_GL */
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