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
ef604e38
Commit
ef604e38
authored
Aug 28, 2011
by
Maxime Lombard
Committed by
Alexandre Julliard
Aug 30, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Add support for Nvidia GTX 460M.
parent
67f7a02f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
0 deletions
+3
-0
directx.c
dlls/wined3d/directx.c
+2
-0
wined3d_private.h
dlls/wined3d/wined3d_private.h
+1
-0
No files found.
dlls/wined3d/directx.c
View file @
ef604e38
...
...
@@ -1112,6 +1112,7 @@ static const struct gpu_description gpu_description_table[] =
{
HW_VENDOR_NVIDIA
,
CARD_NVIDIA_GEFORCE_GT440
,
"NVIDIA GeForce GT 440"
,
DRIVER_NVIDIA_GEFORCE6
,
1024
},
{
HW_VENDOR_NVIDIA
,
CARD_NVIDIA_GEFORCE_GTS450
,
"NVIDIA GeForce GTS 450"
,
DRIVER_NVIDIA_GEFORCE6
,
1024
},
{
HW_VENDOR_NVIDIA
,
CARD_NVIDIA_GEFORCE_GTX460
,
"NVIDIA GeForce GTX 460"
,
DRIVER_NVIDIA_GEFORCE6
,
768
},
{
HW_VENDOR_NVIDIA
,
CARD_NVIDIA_GEFORCE_GTX460M
,
"NVIDIA GeForce GTX 460M"
,
DRIVER_NVIDIA_GEFORCE6
,
1536
},
{
HW_VENDOR_NVIDIA
,
CARD_NVIDIA_GEFORCE_GTX465
,
"NVIDIA GeForce GTX 465"
,
DRIVER_NVIDIA_GEFORCE6
,
1024
},
{
HW_VENDOR_NVIDIA
,
CARD_NVIDIA_GEFORCE_GTX470
,
"NVIDIA GeForce GTX 470"
,
DRIVER_NVIDIA_GEFORCE6
,
1280
},
{
HW_VENDOR_NVIDIA
,
CARD_NVIDIA_GEFORCE_GTX480
,
"NVIDIA GeForce GTX 480"
,
DRIVER_NVIDIA_GEFORCE6
,
1536
},
...
...
@@ -1486,6 +1487,7 @@ static enum wined3d_pci_device select_card_nvidia_binary(const struct wined3d_gl
{
"GTX 480"
,
CARD_NVIDIA_GEFORCE_GTX480
},
/* Geforce 400 - highend */
{
"GTX 470"
,
CARD_NVIDIA_GEFORCE_GTX470
},
/* Geforce 400 - midend high */
{
"GTX 465"
,
CARD_NVIDIA_GEFORCE_GTX465
},
/* Geforce 400 - midend */
{
"GTX 460M"
,
CARD_NVIDIA_GEFORCE_GTX460M
},
/* Geforce 400 - highend mobile */
{
"GTX 460"
,
CARD_NVIDIA_GEFORCE_GTX460
},
/* Geforce 400 - midend */
{
"GTS 450"
,
CARD_NVIDIA_GEFORCE_GTS450
},
/* Geforce 400 - midend low */
{
"GT 440"
,
CARD_NVIDIA_GEFORCE_GT440
},
/* Geforce 400 - lowend */
...
...
dlls/wined3d/wined3d_private.h
View file @
ef604e38
...
...
@@ -1394,6 +1394,7 @@ enum wined3d_pci_device
CARD_NVIDIA_GEFORCE_GT440
=
0x0de0
,
CARD_NVIDIA_GEFORCE_GTS450
=
0x0dc4
,
CARD_NVIDIA_GEFORCE_GTX460
=
0x0e22
,
CARD_NVIDIA_GEFORCE_GTX460M
=
0x0dd1
,
CARD_NVIDIA_GEFORCE_GTX465
=
0x06c4
,
CARD_NVIDIA_GEFORCE_GTX470
=
0x06cd
,
CARD_NVIDIA_GEFORCE_GTX480
=
0x06c0
,
...
...
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