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
c290f4c7
Commit
c290f4c7
authored
Jan 01, 2008
by
Stefan Dösinger
Committed by
Alexandre Julliard
Jan 08, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Detect geforce 7300 cards.
parent
af4639f7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
directx.c
dlls/wined3d/directx.c
+5
-0
wined3d_gl.h
include/wine/wined3d_gl.h
+1
-0
No files found.
dlls/wined3d/directx.c
View file @
c290f4c7
...
...
@@ -1022,6 +1022,11 @@ BOOL IWineD3DImpl_FillGLCaps(WineD3D_GL_Info *gl_info) {
gl_info
->
gl_card
=
CARD_NVIDIA_GEFORCE_7400
;
vidmem
=
256
;
/* The 7400 uses 256-512MB */
}
/* Geforce7 lowend */
else
if
(
strstr
(
gl_info
->
gl_renderer
,
"7300"
))
{
gl_info
->
gl_card
=
CARD_NVIDIA_GEFORCE_7300
;
vidmem
=
256
;
/* Mac Pros with this card have 256 MB */
}
/* Geforce6 highend */
else
if
(
strstr
(
gl_info
->
gl_renderer
,
"6800"
))
{
...
...
include/wine/wined3d_gl.h
View file @
c290f4c7
...
...
@@ -3114,6 +3114,7 @@ typedef enum _GL_Cards {
CARD_NVIDIA_GEFORCE_6600GT
=
0x0140
,
CARD_NVIDIA_GEFORCE_6800
=
0x0041
,
CARD_NVIDIA_GEFORCE_7400
=
0x01d8
,
CARD_NVIDIA_GEFORCE_7300
=
0x01d7
,
/* GeForce Go 7300 */
CARD_NVIDIA_GEFORCE_7600
=
0x0391
,
CARD_NVIDIA_GEFORCE_7800GT
=
0x0092
,
CARD_NVIDIA_GEFORCE_8300GS
=
0x0423
,
...
...
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