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
15e1c571
Commit
15e1c571
authored
Nov 28, 2007
by
Marco Schuster
Committed by
Alexandre Julliard
Nov 29, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Added a card ID for a 8600 Mobile GT.
parent
fd03f4ae
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 @
15e1c571
...
...
@@ -957,6 +957,11 @@ BOOL IWineD3DImpl_FillGLCaps(WineD3D_GL_Info *gl_info) {
gl_info
->
gl_card
=
CARD_NVIDIA_GEFORCE_8600GT
;
vidmem
=
256
;
}
/* Geforce8 - midend mobile */
else
if
(
strstr
(
gl_info
->
gl_renderer
,
"8600 M"
))
{
gl_info
->
gl_card
=
CARD_NVIDIA_GEFORCE_8600MGT
;
vidmem
=
512
;
}
/* Geforce8 - lowend */
else
if
(
strstr
(
gl_info
->
gl_renderer
,
"8300"
)
||
strstr
(
gl_info
->
gl_renderer
,
"8400"
)
||
...
...
include/wine/wined3d_gl.h
View file @
15e1c571
...
...
@@ -3118,6 +3118,7 @@ typedef enum _GL_Cards {
CARD_NVIDIA_GEFORCE_7800GT
=
0x0092
,
CARD_NVIDIA_GEFORCE_8300GS
=
0x0423
,
CARD_NVIDIA_GEFORCE_8600GT
=
0x0402
,
CARD_NVIDIA_GEFORCE_8600MGT
=
0x0407
,
CARD_NVIDIA_GEFORCE_8800GTS
=
0x0193
,
CARD_INTEL_845G
=
0x2562
,
...
...
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