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
11754a64
Commit
11754a64
authored
Dec 30, 2009
by
Aaron Brazener
Committed by
Alexandre Julliard
Dec 31, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Added further Nvidia Geforce 8xxx detection.
parent
dd5abc2d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
directx.c
dlls/wined3d/directx.c
+3
-1
wined3d_private.h
dlls/wined3d/wined3d_private.h
+4
-0
No files found.
dlls/wined3d/directx.c
View file @
11754a64
...
...
@@ -1288,7 +1288,9 @@ static enum wined3d_pci_device wined3d_guess_card(const struct wined3d_gl_info *
}
/* Geforce8 - lowend */
if
(
strstr
(
gl_renderer
,
"8300"
)
if
(
strstr
(
gl_renderer
,
"8100"
)
||
strstr
(
gl_renderer
,
"8200"
)
||
strstr
(
gl_renderer
,
"8300"
)
||
strstr
(
gl_renderer
,
"8400"
)
||
strstr
(
gl_renderer
,
"8500"
))
{
...
...
dlls/wined3d/wined3d_private.h
View file @
11754a64
...
...
@@ -1297,7 +1297,11 @@ enum wined3d_pci_device
CARD_NVIDIA_GEFORCE_7300
=
0x01d7
,
/* GeForce Go 7300 */
CARD_NVIDIA_GEFORCE_7600
=
0x0391
,
CARD_NVIDIA_GEFORCE_7800GT
=
0x0092
,
CARD_NVIDIA_GEFORCE_8100
=
0x084F
,
CARD_NVIDIA_GEFORCE_8200
=
0x0849
,
/* Other PCI ID 0x084B */
CARD_NVIDIA_GEFORCE_8300GS
=
0x0423
,
CARD_NVIDIA_GEFORCE_8400GS
=
0x0404
,
CARD_NVIDIA_GEFORCE_8500GT
=
0x0421
,
CARD_NVIDIA_GEFORCE_8600GT
=
0x0402
,
CARD_NVIDIA_GEFORCE_8600MGT
=
0x0407
,
CARD_NVIDIA_GEFORCE_8800GTS
=
0x0193
,
...
...
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