Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lorenzo Ferrillo
wine
Commits
9877df9a
Commit
9877df9a
authored
12 years ago
by
Caron Wills
Committed by
Alexandre Julliard
12 years ago
Browse files
Options
Downloads
Patches
Plain Diff
wined3d: Recognize AMD Tahiti cards.
parent
b810fad3
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dlls/wined3d/directx.c
+5
-0
5 additions, 0 deletions
dlls/wined3d/directx.c
dlls/wined3d/wined3d_private.h
+1
-0
1 addition, 0 deletions
dlls/wined3d/wined3d_private.h
with
6 additions
and
0 deletions
dlls/wined3d/directx.c
+
5
−
0
View file @
9877df9a
...
...
@@ -1154,6 +1154,7 @@ static const struct gpu_description gpu_description_table[] =
{
HW_VENDOR_AMD
,
CARD_AMD_RADEON_HD6700
,
"AMD Radeon HD 6700 Series"
,
DRIVER_AMD_R600
,
1024
},
{
HW_VENDOR_AMD
,
CARD_AMD_RADEON_HD6800
,
"AMD Radeon HD 6800 Series"
,
DRIVER_AMD_R600
,
1024
},
{
HW_VENDOR_AMD
,
CARD_AMD_RADEON_HD6900
,
"AMD Radeon HD 6900 Series"
,
DRIVER_AMD_R600
,
2048
},
{
HW_VENDOR_AMD
,
CARD_AMD_RADEON_HD7900
,
"AMD Radeon HD 7900 Series"
,
DRIVER_AMD_R600
,
2048
},
/* Intel cards */
{
HW_VENDOR_INTEL
,
CARD_INTEL_830M
,
"Intel(R) 82830M Graphics Controller"
,
DRIVER_INTEL_GMA800
,
32
},
{
HW_VENDOR_INTEL
,
CARD_INTEL_855GM
,
"Intel(R) 82852/82855 GM/GME Graphics Controller"
,
DRIVER_INTEL_GMA800
,
32
},
...
...
@@ -1709,6 +1710,8 @@ static enum wined3d_pci_device select_card_amd_binary(const struct wined3d_gl_in
}
cards
[]
=
{
/* Southern Islands */
{
"HD 7900"
,
CARD_AMD_RADEON_HD7900
},
/* Northern Islands */
{
"HD 6900"
,
CARD_AMD_RADEON_HD6900
},
{
"HD 6800"
,
CARD_AMD_RADEON_HD6800
},
...
...
@@ -1916,6 +1919,8 @@ static enum wined3d_pci_device select_card_amd_mesa(const struct wined3d_gl_info
}
cards
[]
=
{
/* Southern Islands */
{
"TAHITI"
,
CARD_AMD_RADEON_HD7900
},
/* Northern Islands */
{
"CAYMAN"
,
CARD_AMD_RADEON_HD6900
},
{
"BARTS"
,
CARD_AMD_RADEON_HD6800
},
...
...
This diff is collapsed.
Click to expand it.
dlls/wined3d/wined3d_private.h
+
1
−
0
View file @
9877df9a
...
...
@@ -1344,6 +1344,7 @@ enum wined3d_pci_device
CARD_AMD_RADEON_HD6700
=
0x68BA
,
CARD_AMD_RADEON_HD6800
=
0x6739
,
CARD_AMD_RADEON_HD6900
=
0x6719
,
CARD_AMD_RADEON_HD7900
=
0x679A
,
CARD_NVIDIA_RIVA_128
=
0x0018
,
CARD_NVIDIA_RIVA_TNT
=
0x0020
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment