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
b46183a2
Commit
b46183a2
authored
Sep 07, 2010
by
Mikko Rasa
Committed by
Alexandre Julliard
Sep 09, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Recognize GeForce GTX 460.
parent
33042ed1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
0 deletions
+9
-0
directx.c
dlls/wined3d/directx.c
+8
-0
wined3d_private.h
dlls/wined3d/wined3d_private.h
+1
-0
No files found.
dlls/wined3d/directx.c
View file @
b46183a2
...
...
@@ -1071,6 +1071,7 @@ static const struct gpu_description gpu_description_table[] =
{
HW_VENDOR_NVIDIA
,
CARD_NVIDIA_GEFORCE_GTX280
,
"NVIDIA GeForce GTX 280"
,
DRIVER_NVIDIA_GEFORCE6
},
{
HW_VENDOR_NVIDIA
,
CARD_NVIDIA_GEFORCE_GT325M
,
"NVIDIA GeForce GT 325M"
,
DRIVER_NVIDIA_GEFORCE6
},
{
HW_VENDOR_NVIDIA
,
CARD_NVIDIA_GEFORCE_GTS350M
,
"NVIDIA GeForce GTS 350M"
,
DRIVER_NVIDIA_GEFORCE6
},
{
HW_VENDOR_NVIDIA
,
CARD_NVIDIA_GEFORCE_GTX460
,
"NVIDIA GeForce GTX 460"
,
DRIVER_NVIDIA_GEFORCE6
},
{
HW_VENDOR_NVIDIA
,
CARD_NVIDIA_GEFORCE_GTX470
,
"NVIDIA GeForce GTX 470"
,
DRIVER_NVIDIA_GEFORCE6
},
{
HW_VENDOR_NVIDIA
,
CARD_NVIDIA_GEFORCE_GTX480
,
"NVIDIA GeForce GTX 480"
,
DRIVER_NVIDIA_GEFORCE6
},
/* ATI cards */
...
...
@@ -1390,6 +1391,13 @@ static enum wined3d_pci_device select_card_nvidia_binary(const struct wined3d_gl
return
CARD_NVIDIA_GEFORCE_GTX470
;
}
/* Geforce 400 - midend */
if
(
strstr
(
gl_renderer
,
"GTX 460"
))
{
*
vidmem
=
768
;
/* 1024MB model also available */
return
CARD_NVIDIA_GEFORCE_GTX460
;
}
/* Geforce 300 highend mobile */
if
(
strstr
(
gl_renderer
,
"GTS 350M"
)
||
strstr
(
gl_renderer
,
"GTS 360M"
))
...
...
dlls/wined3d/wined3d_private.h
View file @
b46183a2
...
...
@@ -1354,6 +1354,7 @@ enum wined3d_pci_device
CARD_NVIDIA_GEFORCE_GTX280
=
0x05e1
,
CARD_NVIDIA_GEFORCE_GT325M
=
0x0a35
,
CARD_NVIDIA_GEFORCE_GTS350M
=
0x0cb0
,
CARD_NVIDIA_GEFORCE_GTX460
=
0x0e22
,
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