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
a352ad20
Commit
a352ad20
authored
Sep 09, 2010
by
Roderick Colenbrander
Committed by
Alexandre Julliard
Sep 09, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Add Intel gpu and driver information.
parent
d79bbdca
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
3 deletions
+26
-3
directx.c
dlls/wined3d/directx.c
+22
-3
wined3d_private.h
dlls/wined3d/wined3d_private.h
+4
-0
No files found.
dlls/wined3d/directx.c
View file @
a352ad20
...
...
@@ -999,6 +999,17 @@ static const struct driver_version_information driver_version_table[] =
{
DRIVER_ATI_R300
,
DRIVER_MODEL_NT6X
,
"atiumdag.dll"
,
14
,
10
,
741
},
{
DRIVER_ATI_R600
,
DRIVER_MODEL_NT6X
,
"atiumdag.dll"
,
14
,
10
,
741
},
/* Intel
* The drivers are unified but not all versions support all GPUs. At some point the 2k/xp
* drivers used ialmrnt5.dll for GMA800/GMA900 but at some point the file was renamed to
* igxprd32.dll but the GMA800 driver was never updated. */
{
DRIVER_INTEL_GMA800
,
DRIVER_MODEL_NT5X
,
"ialmrnt5.dll"
,
14
,
10
,
3889
},
{
DRIVER_INTEL_GMA900
,
DRIVER_MODEL_NT5X
,
"igxprd32.dll"
,
14
,
10
,
4764
},
{
DRIVER_INTEL_GMA950
,
DRIVER_MODEL_NT5X
,
"igxprd32.dll"
,
14
,
10
,
4926
},
{
DRIVER_INTEL_GMA3000
,
DRIVER_MODEL_NT5X
,
"igxprd32.dll"
,
14
,
10
,
5218
},
{
DRIVER_INTEL_GMA950
,
DRIVER_MODEL_NT6X
,
"igdumd32.dll"
,
14
,
10
,
1504
},
{
DRIVER_INTEL_GMA3000
,
DRIVER_MODEL_NT6X
,
"igdumd32.dll"
,
15
,
10
,
1666
},
/* Nvidia
* - Geforce6 and newer cards are supported by the current driver (197.x) on XP-Win7
* - GeforceFX support is up to 173.x on <= XP
...
...
@@ -1074,9 +1085,17 @@ static const struct gpu_description gpu_description_table[] =
{
HW_VENDOR_ATI
,
CARD_ATI_RADEON_HD4700
,
"ATI Radeon HD 4700 Series"
,
DRIVER_ATI_R600
,
},
{
HW_VENDOR_ATI
,
CARD_ATI_RADEON_HD4800
,
"ATI Radeon HD 4800 Series"
,
DRIVER_ATI_R600
,
},
{
HW_VENDOR_ATI
,
CARD_ATI_RADEON_HD5700
,
"ATI Radeon HD 5700 Series"
,
DRIVER_ATI_R600
,
},
{
HW_VENDOR_ATI
,
CARD_ATI_RADEON_HD5800
,
"ATI Radeon HD 5800 Series"
,
DRIVER_ATI_R600
,
}
/* TODO: Add information about legacy ATI hardware, Intel and other cards. */
{
HW_VENDOR_ATI
,
CARD_ATI_RADEON_HD5800
,
"ATI Radeon HD 5800 Series"
,
DRIVER_ATI_R600
,
},
/* Intel cards */
{
HW_VENDOR_INTEL
,
CARD_INTEL_I830G
,
"Intel(R) 82830M Graphics Controller"
,
DRIVER_INTEL_GMA800
},
{
HW_VENDOR_INTEL
,
CARD_INTEL_I855G
,
"Intel(R) 82852/82855 GM/GME Graphics Controller"
,
DRIVER_INTEL_GMA800
},
{
HW_VENDOR_INTEL
,
CARD_INTEL_I865G
,
"Intel(R) 82865G Graphics Controller"
,
DRIVER_INTEL_GMA800
},
{
HW_VENDOR_INTEL
,
CARD_INTEL_I915G
,
"Intel(R) 82915G/GV/910GL Express Chipset Family"
,
DRIVER_INTEL_GMA900
},
{
HW_VENDOR_INTEL
,
CARD_INTEL_I915GM
,
"Mobile Intel(R) 915GM/GMS,910GML Express Chipset Family"
,
DRIVER_INTEL_GMA900
},
{
HW_VENDOR_INTEL
,
CARD_INTEL_I945GM
,
"Mobile Intel(R) 945GM Express Chipset Family"
,
DRIVER_INTEL_GMA950
},
{
HW_VENDOR_INTEL
,
CARD_INTEL_X3100
,
"Mobile Intel(R) 965 Express Chipset Family"
,
DRIVER_INTEL_GMA3000
}
/* TODO: Add information about legacy ATI hardware and other cards. */
};
static
const
struct
driver_version_information
*
get_driver_version_info
(
enum
wined3d_display_driver
driver
,
...
...
dlls/wined3d/wined3d_private.h
View file @
a352ad20
...
...
@@ -1241,6 +1241,10 @@ enum wined3d_display_driver
{
DRIVER_ATI_R300
,
DRIVER_ATI_R600
,
DRIVER_INTEL_GMA800
,
DRIVER_INTEL_GMA900
,
DRIVER_INTEL_GMA950
,
DRIVER_INTEL_GMA3000
,
DRIVER_NVIDIA_TNT
,
DRIVER_NVIDIA_GEFORCE2MX
,
DRIVER_NVIDIA_GEFORCEFX
,
...
...
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