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
44d5d395
Commit
44d5d395
authored
Dec 18, 2012
by
Jiang Yike
Committed by
Alexandre Julliard
Dec 19, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Add recognition for NVIDIA GeForce GTX 660 Ti, 660, 650 Ti and 650.
parent
b83216c1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
0 deletions
+12
-0
directx.c
dlls/wined3d/directx.c
+8
-0
wined3d_private.h
dlls/wined3d/wined3d_private.h
+4
-0
No files found.
dlls/wined3d/directx.c
View file @
44d5d395
...
...
@@ -1097,6 +1097,10 @@ static const struct gpu_description gpu_description_table[] =
{
HW_VENDOR_NVIDIA
,
CARD_NVIDIA_GEFORCE_GT630M
,
"NVIDIA GeForce GT 630M"
,
DRIVER_NVIDIA_GEFORCE6
,
1024
},
{
HW_VENDOR_NVIDIA
,
CARD_NVIDIA_GEFORCE_GT640M
,
"NVIDIA GeForce GT 640M"
,
DRIVER_NVIDIA_GEFORCE6
,
1024
},
{
HW_VENDOR_NVIDIA
,
CARD_NVIDIA_GEFORCE_GT650M
,
"NVIDIA GeForce GT 650M"
,
DRIVER_NVIDIA_GEFORCE6
,
2048
},
{
HW_VENDOR_NVIDIA
,
CARD_NVIDIA_GEFORCE_GTX650
,
"NVIDIA GeForce GTX 650"
,
DRIVER_NVIDIA_GEFORCE6
,
1024
},
{
HW_VENDOR_NVIDIA
,
CARD_NVIDIA_GEFORCE_GTX650TI
,
"NVIDIA GeForce GTX 650 Ti"
,
DRIVER_NVIDIA_GEFORCE6
,
1024
},
{
HW_VENDOR_NVIDIA
,
CARD_NVIDIA_GEFORCE_GTX660
,
"NVIDIA GeForce GTX 660"
,
DRIVER_NVIDIA_GEFORCE6
,
2048
},
{
HW_VENDOR_NVIDIA
,
CARD_NVIDIA_GEFORCE_GTX660TI
,
"NVIDIA GeForce GTX 660 Ti"
,
DRIVER_NVIDIA_GEFORCE6
,
2048
},
{
HW_VENDOR_NVIDIA
,
CARD_NVIDIA_GEFORCE_GTX670
,
"NVIDIA GeForce GTX 670"
,
DRIVER_NVIDIA_GEFORCE6
,
2048
},
{
HW_VENDOR_NVIDIA
,
CARD_NVIDIA_GEFORCE_GTX680
,
"NVIDIA GeForce GTX 680"
,
DRIVER_NVIDIA_GEFORCE6
,
2048
},
...
...
@@ -1497,6 +1501,10 @@ static enum wined3d_pci_device select_card_nvidia_binary(const struct wined3d_gl
{
{
"GTX 680"
,
CARD_NVIDIA_GEFORCE_GTX680
},
/* Geforce 600 - highend */
{
"GTX 670"
,
CARD_NVIDIA_GEFORCE_GTX670
},
/* Geforce 600 - midend high */
{
"GTX 660 Ti"
,
CARD_NVIDIA_GEFORCE_GTX660TI
},
/* Geforce 600 - midend high */
{
"GTX 660"
,
CARD_NVIDIA_GEFORCE_GTX660
},
/* Geforce 600 - midend high */
{
"GTX 650 Ti"
,
CARD_NVIDIA_GEFORCE_GTX650TI
},
/* Geforce 600 - lowend */
{
"GTX 650"
,
CARD_NVIDIA_GEFORCE_GTX650
},
/* Geforce 600 - lowend */
{
"GT 650M"
,
CARD_NVIDIA_GEFORCE_GT650M
},
/* Geforce 600 - midend mobile */
{
"GT 640M"
,
CARD_NVIDIA_GEFORCE_GT640M
},
/* Geforce 600 - midend mobile */
{
"GT 630M"
,
CARD_NVIDIA_GEFORCE_GT630M
},
/* Geforce 600 - midend mobile */
...
...
dlls/wined3d/wined3d_private.h
View file @
44d5d395
...
...
@@ -1427,6 +1427,10 @@ enum wined3d_pci_device
CARD_NVIDIA_GEFORCE_GT630M
=
0x0de9
,
CARD_NVIDIA_GEFORCE_GT640M
=
0x0fd2
,
CARD_NVIDIA_GEFORCE_GT650M
=
0x0fd1
,
CARD_NVIDIA_GEFORCE_GTX650
=
0x0fc6
,
CARD_NVIDIA_GEFORCE_GTX650TI
=
0x11c6
,
CARD_NVIDIA_GEFORCE_GTX660
=
0x11c0
,
CARD_NVIDIA_GEFORCE_GTX660TI
=
0x1183
,
CARD_NVIDIA_GEFORCE_GTX670
=
0x1189
,
CARD_NVIDIA_GEFORCE_GTX680
=
0x1180
,
...
...
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