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
39eaaeaa
Commit
39eaaeaa
authored
May 26, 2010
by
Roderick Colenbrander
Committed by
Alexandre Julliard
May 27, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Add support for mobile Geforce 3xx GPUs.
parent
c44603a5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
2 deletions
+24
-2
directx.c
dlls/wined3d/directx.c
+22
-2
wined3d_private.h
dlls/wined3d/wined3d_private.h
+2
-0
No files found.
dlls/wined3d/directx.c
View file @
39eaaeaa
...
...
@@ -1021,6 +1021,8 @@ static const struct driver_version_information driver_version_table[] =
{
HW_VENDOR_NVIDIA
,
CARD_NVIDIA_GEFORCE_GTX260
,
"NVIDIA GeForce GTX 260"
,
15
,
11
,
9745
},
{
HW_VENDOR_NVIDIA
,
CARD_NVIDIA_GEFORCE_GTX275
,
"NVIDIA GeForce GTX 275"
,
15
,
11
,
9745
},
{
HW_VENDOR_NVIDIA
,
CARD_NVIDIA_GEFORCE_GTX280
,
"NVIDIA GeForce GTX 280"
,
15
,
11
,
9745
},
{
HW_VENDOR_NVIDIA
,
CARD_NVIDIA_GEFORCE_GT325M
,
"NVIDIA GeForce GT 325M"
,
15
,
11
,
9745
},
{
HW_VENDOR_NVIDIA
,
CARD_NVIDIA_GEFORCE_GTS350M
,
"NVIDIA GeForce GTS 350M"
,
15
,
11
,
9745
},
{
HW_VENDOR_NVIDIA
,
CARD_NVIDIA_GEFORCE_GTX470
,
"NVIDIA GeForce GTX 470"
,
15
,
11
,
9775
},
{
HW_VENDOR_NVIDIA
,
CARD_NVIDIA_GEFORCE_GTX480
,
"NVIDIA GeForce GTX 480"
,
15
,
11
,
9775
},
/* ATI cards. The driver versions are somewhat similar, but not quite the same. Let's hardcode. */
...
...
@@ -1275,6 +1277,22 @@ static enum wined3d_pci_device select_card_nvidia_binary(const struct wined3d_gl
return
CARD_NVIDIA_GEFORCE_GTX470
;
}
/* Geforce 300 highend mobile */
if
(
strstr
(
gl_renderer
,
"GTS 350M"
)
||
strstr
(
gl_renderer
,
"GTS 360M"
))
{
*
vidmem
=
1024
;
return
CARD_NVIDIA_GEFORCE_GTS350M
;
}
/* Geforce 300 midend mobile (Geforce GT 325M/330M use the same core) */
if
(
strstr
(
gl_renderer
,
"GT 325M"
)
||
strstr
(
gl_renderer
,
"GT 330M"
))
{
*
vidmem
=
1024
;
return
CARD_NVIDIA_GEFORCE_GT325M
;
}
/* Geforce 200 - highend */
if
(
strstr
(
gl_renderer
,
"GTX 280"
)
||
strstr
(
gl_renderer
,
"GTX 285"
)
...
...
@@ -1310,9 +1328,11 @@ static enum wined3d_pci_device select_card_nvidia_binary(const struct wined3d_gl
*
vidmem
=
512
;
/* The GT 220 has 512-1024MB */
return
CARD_NVIDIA_GEFORCE_GT220
;
}
/* Geforce 200 lowend */
/* Geforce 200 lowend
(Geforce 305/310 use the same core)
*/
if
(
strstr
(
gl_renderer
,
"Geforce 210"
)
||
strstr
(
gl_renderer
,
"G 210"
))
||
strstr
(
gl_renderer
,
"G 210"
)
||
strstr
(
gl_renderer
,
"Geforce 305"
)
||
strstr
(
gl_renderer
,
"Geforce 310"
))
{
*
vidmem
=
512
;
return
CARD_NVIDIA_GEFORCE_210
;
...
...
dlls/wined3d/wined3d_private.h
View file @
39eaaeaa
...
...
@@ -1349,6 +1349,8 @@ enum wined3d_pci_device
CARD_NVIDIA_GEFORCE_GTX260
=
0x05e2
,
CARD_NVIDIA_GEFORCE_GTX275
=
0x05e6
,
CARD_NVIDIA_GEFORCE_GTX280
=
0x05e1
,
CARD_NVIDIA_GEFORCE_GT325M
=
0x0a35
,
CARD_NVIDIA_GEFORCE_GTS350M
=
0x0cb0
,
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