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
6bf3f67c
Commit
6bf3f67c
authored
Nov 10, 2010
by
Jaime Rave
Committed by
Alexandre Julliard
Nov 11, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Added Intel GM45 video card detection.
parent
5dd27f75
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
directx.c
dlls/wined3d/directx.c
+3
-1
wined3d_private.h
dlls/wined3d/wined3d_private.h
+1
-0
No files found.
dlls/wined3d/directx.c
View file @
6bf3f67c
...
...
@@ -1114,7 +1114,8 @@ static const struct gpu_description gpu_description_table[] =
{
HW_VENDOR_INTEL
,
CARD_INTEL_I915G
,
"Intel(R) 82915G/GV/910GL Express Chipset Family"
,
DRIVER_INTEL_GMA900
,
64
},
{
HW_VENDOR_INTEL
,
CARD_INTEL_I915GM
,
"Mobile Intel(R) 915GM/GMS,910GML Express Chipset Family"
,
DRIVER_INTEL_GMA900
,
64
},
{
HW_VENDOR_INTEL
,
CARD_INTEL_I945GM
,
"Mobile Intel(R) 945GM Express Chipset Family"
,
DRIVER_INTEL_GMA950
,
64
},
{
HW_VENDOR_INTEL
,
CARD_INTEL_X3100
,
"Mobile Intel(R) 965 Express Chipset Family"
,
DRIVER_INTEL_GMA3000
,
128
}
{
HW_VENDOR_INTEL
,
CARD_INTEL_X3100
,
"Mobile Intel(R) 965 Express Chipset Family"
,
DRIVER_INTEL_GMA3000
,
128
},
{
HW_VENDOR_INTEL
,
CARD_INTEL_GM45
,
"Mobile Intel(R) GM45 Express Chipset Family"
,
DRIVER_INTEL_GMA3000
,
512
}
};
static
const
struct
driver_version_information
*
get_driver_version_info
(
enum
wined3d_display_driver
driver
,
...
...
@@ -1692,6 +1693,7 @@ static enum wined3d_pci_device select_card_ati_binary(const struct wined3d_gl_in
static
enum
wined3d_pci_device
select_card_intel
(
const
struct
wined3d_gl_info
*
gl_info
,
const
char
*
gl_renderer
)
{
if
(
strstr
(
gl_renderer
,
"GM45"
))
return
CARD_INTEL_GM45
;
if
(
strstr
(
gl_renderer
,
"X3100"
)
||
strstr
(
gl_renderer
,
"965GM"
))
{
/* MacOS calls the card GMA X3100, otherwise known as GM965/GL960 */
...
...
dlls/wined3d/wined3d_private.h
View file @
6bf3f67c
...
...
@@ -1410,6 +1410,7 @@ enum wined3d_pci_device
CARD_INTEL_I915GM
=
0x2592
,
CARD_INTEL_I945GM
=
0x27a2
,
/* Same as GMA 950? */
CARD_INTEL_X3100
=
0x2a02
,
/* Found in Macs. Same as GM965/GL960 */
CARD_INTEL_GM45
=
0x2a42
,
};
struct
wined3d_fbo_ops
...
...
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