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
ba11b695
Commit
ba11b695
authored
May 17, 2010
by
Julius Schwartzenberg
Committed by
Alexandre Julliard
May 18, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Cope with the new Intel renderer string.
parent
00eb092e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
directx.c
dlls/wined3d/directx.c
+6
-3
No files found.
dlls/wined3d/directx.c
View file @
ba11b695
...
...
@@ -1204,7 +1204,8 @@ static enum wined3d_gl_vendor wined3d_guess_gl_vendor(struct wined3d_gl_info *gl
return
GL_VENDOR_FGLRX
;
if
(
strstr
(
gl_vendor_string
,
"Intel(R)"
)
||
strstr
(
gl_renderer
,
"Intel(R)"
)
/* Intel switched from Intel(R) to Intel® recently, so just match Intel. */
||
strstr
(
gl_renderer
,
"Intel"
)
||
strstr
(
gl_vendor_string
,
"Intel Inc."
))
return
GL_VENDOR_INTEL
;
...
...
@@ -1236,7 +1237,8 @@ static enum wined3d_pci_vendor wined3d_guess_card_vendor(const char *gl_vendor_s
return
HW_VENDOR_ATI
;
if
(
strstr
(
gl_vendor_string
,
"Intel(R)"
)
||
strstr
(
gl_renderer
,
"Intel(R)"
)
/* Intel switched from Intel(R) to Intel® recently, so just match Intel. */
||
strstr
(
gl_renderer
,
"Intel"
)
||
strstr
(
gl_vendor_string
,
"Intel Inc."
))
return
HW_VENDOR_INTEL
;
...
...
@@ -1944,7 +1946,8 @@ static const struct vendor_card_selection vendor_card_select_table[] =
{
GL_VENDOR_FGLRX
,
HW_VENDOR_ATI
,
"AMD/ATI binary driver"
,
select_card_ati_binary
},
{
GL_VENDOR_MESA
,
HW_VENDOR_ATI
,
"Mesa AMD/ATI driver"
,
select_card_ati_mesa
},
{
GL_VENDOR_MESA
,
HW_VENDOR_NVIDIA
,
"Mesa Nouveau driver"
,
select_card_nvidia_mesa
},
{
GL_VENDOR_MESA
,
HW_VENDOR_INTEL
,
"Mesa Intel driver"
,
select_card_intel_mesa
}
{
GL_VENDOR_MESA
,
HW_VENDOR_INTEL
,
"Mesa Intel driver"
,
select_card_intel_mesa
},
{
GL_VENDOR_INTEL
,
HW_VENDOR_INTEL
,
"Mesa Intel driver"
,
select_card_intel_mesa
}
};
...
...
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