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
c44603a5
Commit
c44603a5
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: Mark Geforce GT 140 as a Geforce 9600GT.
parent
036295c3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
directx.c
dlls/wined3d/directx.c
+3
-2
No files found.
dlls/wined3d/directx.c
View file @
c44603a5
...
...
@@ -1327,8 +1327,9 @@ static enum wined3d_pci_device select_card_nvidia_binary(const struct wined3d_gl
return
CARD_NVIDIA_GEFORCE_9800GT
;
}
/* Geforce9 - midend */
if
(
strstr
(
gl_renderer
,
"9600"
))
/* Geforce9 - midend (GT 140 uses the same core as the 9600GT) */
if
(
strstr
(
gl_renderer
,
"9600"
)
||
strstr
(
gl_renderer
,
"GT 140"
))
{
*
vidmem
=
384
;
/* The 9600GSO has 384MB, the 9600GT has 512-1024MB */
return
CARD_NVIDIA_GEFORCE_9600GT
;
...
...
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