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
77a83aee
Commit
77a83aee
authored
Sep 28, 2009
by
Stefan Dösinger
Committed by
Alexandre Julliard
Sep 28, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Don't use GL_NV_texture_shader on OSX.
parent
6452e4d2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
1 deletion
+22
-1
directx.c
dlls/wined3d/directx.c
+22
-1
No files found.
dlls/wined3d/directx.c
View file @
77a83aee
...
...
@@ -666,6 +666,12 @@ static BOOL match_allows_spec_alpha(const struct wined3d_gl_info *gl_info, const
}
}
static
BOOL
match_apple_nvts
(
const
struct
wined3d_gl_info
*
gl_info
,
const
char
*
gl_renderer
)
{
if
(
!
match_apple
(
gl_info
,
gl_renderer
))
return
FALSE
;
return
GL_SUPPORT
(
NV_TEXTURE_SHADER
);
}
static
void
quirk_arb_constants
(
struct
wined3d_gl_info
*
gl_info
)
{
TRACE_
(
d3d_caps
)(
"Using ARB vs constant limit(=%u) for GLSL.
\n
"
,
gl_info
->
vs_arb_constantsF
);
...
...
@@ -783,6 +789,13 @@ static void quirk_allows_specular_alpha(struct wined3d_gl_info *gl_info)
gl_info
->
quirks
|=
WINED3D_QUIRK_ALLOWS_SPECULAR_ALPHA
;
}
static
void
quirk_apple_nvts
(
struct
wined3d_gl_info
*
gl_info
)
{
gl_info
->
supported
[
NV_TEXTURE_SHADER
]
=
FALSE
;
gl_info
->
supported
[
NV_TEXTURE_SHADER2
]
=
FALSE
;
gl_info
->
supported
[
NV_TEXTURE_SHADER3
]
=
FALSE
;
}
struct
driver_quirk
{
BOOL
(
*
match
)(
const
struct
wined3d_gl_info
*
gl_info
,
const
char
*
gl_renderer
);
...
...
@@ -847,7 +860,15 @@ static const struct driver_quirk quirk_table[] =
match_allows_spec_alpha
,
quirk_allows_specular_alpha
,
"Allow specular alpha quirk"
}
},
{
/* The pixel formats provided by GL_NV_texture_shader are broken on OSX
* (rdar://5682521).
*/
match_apple_nvts
,
quirk_apple_nvts
,
"Apple NV_texture_shader disable"
},
};
/* Certain applications (Steam) complain if we report an outdated driver version. In general,
...
...
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