Contribute
Register

Radeon Compatibility Guide - ATI/AMD Graphics Cards

Unfortunately I'm not at home to look at my BIOS set up, found this image through google. I saw that in BIOS under ADVANCED, I can choose PEG as the primary. Is this the only switch I'd need to make? Or would I need to alter the IGPU Multi Monitor as well?

I attached an image of what I expect to see when I get home later....
 

Attachments

  • ROG_Bios.JPG
    ROG_Bios.JPG
    115.4 KB · Views: 337
Unfortunately I'm not at home to look at my BIOS set up, found this image through google. I saw that in BIOS under ADVANCED, I can choose PEG as the primary. Is this the only switch I'd need to make? Or would I need to alter the IGPU Multi Monitor as well?

I attached an image of what I expect to see when I get home later....

Some users leave multimonitor active so they can still get IGPU support for decoding in certain apps.
 
Unfortunately I'm not at home to look at my BIOS set up, found this image through google. I saw that in BIOS under ADVANCED, I can choose PEG as the primary. Is this the only switch I'd need to make? Or would I need to alter the IGPU Multi Monitor as well?

I attached an image of what I expect to see when I get home later....
Yes choose PEG (for PCI Express Graphics).
If you enable IGPU multi monitor, then IGPU will be enabled. Whether you need IGPU or not depends on what you are planning to use the system for. If you plan to use FCPX, for example, then you will most likely want to enable the IGPU in connector-less mode as it gets used by FCPX for encoding/decoding H.264/5.
You can leave IGPU multi monitor enabled in BIOS but in Clover config.plist (Graphics->Inject->Intel=NO) should disable the IGPU.
 
Pre install its set in your config.plist in clover graphics settings. Below is Clover Configurator graphics setting for your config.plist. As long as you use a recent version of clover and a recent version of Clover Configurator you will have the option. This option was developed by meize and Slice incorporated it into clover about 9 months ago. It is based on the Whatevergreen kext fix. It is the simplest way to enable RX cards in Sierra.

.View attachment 336749

So I went to install the card... too long for my Micro ATX build despite many reviews saying otherwise... A case of measure twice kind of thing...

Will this RX 560 work instead?

The guide says yes OOB
 
So I went to install the card... too long for my Micro ATX build despite many reviews saying otherwise... A case of measure twice kind of thing...

Will this RX 560 work instead?

The guide says yes OOB

No XFX RX 460-560 models have a special bios it is the only brand that won’t be compatible. XFX RX 470-580 models will work.

The XFX RX 460-560 will only work if you reflash the bios with another brand version.
 
So I went to install the card... too long for my Micro ATX build despite many reviews saying otherwise... A case of measure twice kind of thing...

Will this RX 560 work instead?

The guide says yes OOB

I have that XFX RX560 in my 6700k Hackintosh, it works perfect BUT you need to flash it with a Sapphire Pulse RX560 (4GB or 2GB version, make sure it's correct) just like @Gigamaxx mentioned. Use ATIFlash under Windows, or the DOS version with admin privilege in Windows (or make a DOS boot usb and drop in the bios in the same flash folder).

You might brick your card, so beware.

I would advise you just get a Sapphire Pulse RX560 4GB or some other brand instead of dealing with vBIOS updates.

Also remember only 1 port will work, you will need to drop in nVidiaGraphicFixup.kext to activate the other ports if you have dual monitors.
 
Radeon RX Vega M GL is on the NUC8 Hades Canyon. Which I have but no GPU support yet that I have found.

333557-intel-hades-canyon-nuc-nuc8i7hvk
This is a link to some early testing we did at another site. I returned my NUC after a couple of weeks of testing it didn't prove to be feasible at this point. Mojave did add 3 new Vega IDs to the 10000controllerkext but none match the nuc ID yet. There is still hope though if Apple adopts this chip or one very similar. Here are some Pciid kexts we were testing with to initiate the graphics. Credits RehabMan. It would be nice to get these working.
 

Attachments

  • FakePCIID_Vega_Integrated_Test_ID1.kext.zip
    2.6 KB · Views: 222
  • FakePCIID_Vega_Integrated_Test_ID2.kext.zip
    2.6 KB · Views: 226
Hello all since Mojave is out there have been some significant AMD graphics changes. Most all pre metal support cards have been completely dropped. So everything using AMD6000Controller.kext and early are no longer supported natively. With all these changes I have updated the AMD framebuffer script to work with Mojave. Additionally the framebuffer connecter data has also changed. Anyhow without further hold up here's the new script

PHP:
<?php
function padHex($d,$l) {return str_pad(dechex($d),$l,'0',STR_PAD_LEFT);}
function toHex($s){$i=0;$t='';while(isset($s[$i])){$t.=padHex(ord($s[$i++]),2);}return $t;}
function toStr($h){$s='';$i=4;while($i-->0){$s.=chr($h>>(8*$i)&0xFF);}return $s;}
$ctype=array('02000000'=>'LVDS','04000000'=>'DVI-D','08000000'=>'SVIDEO','10000000'=>'VGA','00020000'=>'DVI-SL','00040000'=>'DP','00080000'=>'HDMI','00100000'=>'UNKNOWN');
foreach(glob('/System/Library/Extensions/'.(file_exists('/System/Library/Extensions/AMD7000Controller.kext') ? 'AMD' : 'ATI').'*Controller.kext') as $file) {
    echo str_pad(substr(strrchr($file,'/'),1),72,'-',STR_PAD_BOTH)."\n\n";
    $file=array_pop(glob("$file/Contents/MacOS/*"));
    $a=popen("otool -Xvt $file",'r');
    $b=fopen($file,'r');
    while ($l=fgets($a)) {
        if (strncmp($l,'__ZN',4)!=0 || ($i=strpos($l,'Info10createInfo'))===false) continue;
        $f=new stdClass();
        $f->name=substr($l,5+is_numeric($l[5]),$i-5-is_numeric($l[5]));
        while(($l=fgets($a)) && strpos($l,'ret')===false) {
            if (strpos($l,'leaq')!==false) $f->addr=hexdec(substr($l,6,strpos($l,'(')-6));
            if (!isset($f->ports) && strpos($l,"movb\t$")!==false) $f->ports=hexdec(substr($l,strpos($l,'$'),strpos($l,',')-strpos($l,'$')))&0xFF;
            if (strpos($l,'jl')!==false) $i=hexdec(substr($l,4));
            if (strpos($l,'jmp')!==false) $i=hexdec(substr($l,4)) + 0x1A;
        }
        $f->addr+=$i;
        echo "$f->name ($f->ports) @ 0x".dechex($f->addr)."\n";
        $t=$p=array();
        fseek($b,$f->addr);
        while($f->ports-- > 0) $p[]=$ctype[substr($t[]=toHex(fread($b,24)),0,8)];
        echo implode(', ',$p)."\n";
        echo implode("\n",$t)."\n\n";
    }
    pclose($a);
    fclose($b);
}

This script requires Xcode developer command line tools to be installed.

sample output

Code:
------------------------AMD10000Controller.kext-------------------------

Ucayali (6) @ 0x5d580
LVDS, LVDS, DP, DP, DP, DP
020000000001000008010141220000001102020400000000
020000000001000008010231130000002103010300000000
000400000001000000010313400000002001030100000000
000400000001000000010421300000001000050500000000
000400000001000000010553600000002205040200000000
000400000001000000010661500000001204060600000000

Exmoor (6) @ 0x5d610
LVDS, LVDS, DP, DP, DP, DP
020000000001000000010151200000002205020400000000
020000000001000000010261110000001204010300000000
000400000403000000010343400000001102030100000000
000400000001000000010431300000002103050500000000
000400000403000000010523600000001000040200000000
000400000001000000010611500000002001050500000000

Wenamu (6) @ 0x5d9d0
DP, DP, DP, DP, DP, DP
000400000403000000010153200000002205020200000000
000400000403000000010263100000001204010100000000
000400000403000000010313400000002001050600000000
000400000403000000010423300000001000060500000000
000400000403000000010533600000002103040400000000
000400000403000000010643500000001102030300000000

Valdivia (6) @ 0x5da60
LVDS, LVDS, DP, DP, DP, DP
020000000001000008010141220000001102020400000000
020000000001000008010231120000002103010300000000
000400000001000000010313400000002001030100000000
000400000001000000010423300000001000050500000000
000400000001000000010553600000002205040200000000
000400000001000000010663500000001204060600000000

Xingu (5) @ 0x5dcb0
LVDS, DP, DP, DP, DP
020000000001000039050108000000002001060600000000
000400000001000000010243300000001000050500000000
000400000001000000010313200000002103040400000000
000400000001000000010463500000001102030300000000
000400000001000000010533400000002205020200000000

Kamarang (4) @ 0x5dd30
DP, DP, DP, HDMI
000400000403000000010101000000002205020200000000
000400000403000000010201000000001204010100000000
000400000403000000010300000000001000050500000000
000800000402000000010400000000002001060600000000

Zutia (6) @ 0x5ff80
DP, DP, DP, DP, DP, DP
000400000403000000010101000000001000060600000000
000400000403000000010201000000002001050500000000
000400000403000000010301000000001102040400000000
000400000403000000010401000000002103030300000000
000400000403000000010501000000002205010100000000
000400000403000000010601000000001204020200000000

Japura (6) @ 0x601a0
LVDS, LVDS, DP, DP, DP, DP
020000000001000008010151220000002205020200000000
020000000001000008010261120000001204010100000000
000400000001000000010313400000002001050600000000
000400000001000000010423300000001000060500000000
000400000001000000010543600000001102030300000000
000400000001000000010633500000002103040400000000

Araguaia (6) @ 0x603a0
DP, DP, DP, DP, DP, DP
000400000001000000010123200000001000050600000000
000400000001000000010213100000002001060500000000
000400000001000000010343400000001102040400000000
000400000001000000010433300000002103030300000000
000400000001000000010563600000001204020200000000
000400000001000000010653500000002205010100000000

Rapel (4) @ 0x666d0
DP, DP, DP, DP
000400000403000000010101000000002205020200000000
000400000403000000010201000000001102030300000000
000400000403000000010301000000001000050500000000
000400000403000000010401000000002001060600000000

Iriri (4) @ 0x6e730
DP, DP, DP, HDMI
000400000403000000010101000000002205020200000000
000400000403000000010201000000001204010100000000
000400000403000000010300000000001000050500000000
000800000402000000010400000000002001060600000000

Baladi (6) @ 0x6f470
DP, DP, DP, DP, DP, DP
000400000403000000010300000000001204030300000000
000400000403000000010100000000001102010100000000
000400000403000000010200000000002103020200000000
000400000403000000010400000000002205040400000000
000400000403000000010500000000001000050500000000
000400000403000000010600000000002001060600000000

-------------------------AMD7000Controller.kext-------------------------

Ramen (6) @ 0x58ee0
LVDS, HDMI, DP, DP, DP, DP
020000000001000039050108000000002001050600000000
000800000402000000010200000000001000030500000000
000400000403000000010343400000001102010100000000
000400000001000000010431300000002103040300000000
000400000403000000010563600000001204020200000000
000400000001000000010651500000002205040300000000

Tako (6) @ 0x58fe0
LVDS, LVDS, DP, DP, DP, DP
020000000001000000010151200000002205020400000000
020000000001000000010261110000001204010300000000
000400000403000000010343400000001102030100000000
000400000001000000010431300000002103050500000000
000400000403000000010523600000001000040200000000
000400000001000000010611500000002001050500000000

Namako (4) @ 0x59070
LVDS, LVDS, DP, DP
020000000001000000010151200000002205020200000000
020000000001000000010261110000001204010100000000
000400000403000000010343400000001102030300000000
000400000403000000010433300000002103040400000000

Aji (4) @ 0x59150
DP, DP, DVI-D, HDMI
000400000403000000010101000000001204050100000000
000400000403000000010201000000002205040200000000
040000001402000000010300000000000000030600000000
000800000402000000010400000000001102010400000000

Buri (4) @ 0x591b0
LVDS, DP, DP, HDMI
020000000001000039050100000000001000050500000000
000400000403000000090200000000001102010100000000
000400000403000000090300000000002103020200000000
000800000402000000010400000000001204030300000000

Chutoro (5) @ 0x59210
LVDS, DP, DP, DP, DP
020000000001000019010100000000001204030300000000
000400000403000000010201000000001102010100000000
000400000001000000090300000000002103020200000000
000400000001000000090400000000002205040400000000
000400000403000000010500000000001000050500000000

Dashimaki (4) @ 0x59290
DP, DP, DVI-D, HDMI
000400000403000000010101000000001204020200000000
000400000403000000010200000000002205030500000000
040000001402000000010301000000000000040400000000
000800000402000000010400000000001102010100000000

Ebi (5) @ 0x59300
LVDS, DP, DP, DP, DP
020000000001000019010100000000001204030300000000
000400000403000000010201000000001102010100000000
000400000001000000090301000000002103020200000000
000400000001000000090401000000002205040400000000
000400000403000000010501000000001000050500000000

Gari (5) @ 0x59380
LVDS, DP, DP, DP, DP
020000000001000019010100000000001204030300000000
000400000403000000010201000000001102010100000000
000400000001000000090300000000002103020200000000
000400000001000000090400000000002205040400000000
000400000403000000010500000000001000050500000000

Futomaki (4) @ 0x59400
DP, DP, DVI-D, HDMI
000400000403000000010101000000001204040100000000
000400000403000000010201000000002205050200000000
040000001402000000010300000000000000060600000000
000800000402000000010400000000001102010300000000

Hamachi (4) @ 0x59460
DP, DP, DVI-D, HDMI
000400000403000000010101000000001204050100000000
000400000403000000010201000000002205040200000000
040000001402000000010300000000000000030600000000
000800000402000000010400000000001102010400000000

OPM (6) @ 0x59500
DP, DP, DP, DP, DP, DP
000400000403000000010001000000001102010100000000
000400000403000000010001000000002103020200000000
000400000403000000010001000000001204030300000000
000400000403000000010001000000002205040400000000
000400000403000000010001000000001000050500000000
000400001403000000010001000000002001060600000000

Ikura (1) @ 0x595a0
HDMI
000800000402000000010100000000001204030100000000

IkuraS (6) @ 0x595c0
DP, DP, DP, DP, DP, DP
000400000403000000010143200000001102010300000000
000400000403000000010233100000002103020400000000
000400000403000000010363400000001204030100000000
000400000403000000010453300000002205040200000000
000400000403000000010523600000001000050500000000
000400000403000000010613500000002001060600000000

Junsai (6) @ 0x59650
DP, DP, DP, DP, DP, DP
000400000403000000010001000000001204030100000000
000400000403000000010001000000002205040200000000
000400000403000000010001000000001102010300000000
000400000403000000010001000000002103020400000000
000400000403000000010001000000001000050500000000
000400000403000000010001000000002001060600000000

Kani (1) @ 0x596e0
HDMI
000800000402000000010100000000001204030100000000

KaniS (6) @ 0x59700
DP, DP, DP, DP, DP, DP
000400000403000000010143200000001102010300000000
000400000403000000010233100000002103020400000000
000400000403000000010363400000001204030100000000
000400000403000000010453300000002205040200000000
000400000403000000010523600000001000050500000000
000400000403000000010613500000002001060600000000

DashimakiS (4) @ 0x59790
DP, DP, DVI-D, HDMI
000400000403000000010101000000001204020200000000
000400000403000000010201000000002205030500000000
040000001402000000010300000000000000040400000000
000800000402000000010400000000001102010100000000

Maguro (1) @ 0x597f0
HDMI
000800000402000000010100000000001204030100000000

MaguroS (6) @ 0x59810
DP, DP, DP, DP, DP, DP
000400000403000000010143200000001102010300000000
000400000403000000010233100000002103020400000000
000400000403000000010363400000001204030100000000
000400000403000000010453300000002205040200000000
000400000403000000010523600000001000050500000000
000400000403000000010613500000002001060600000000

-------------------------AMD8000Controller.kext-------------------------

Exmoor (6) @ 0x5a0f0
LVDS, LVDS, DP, DP, DP, DP
020000000001000000010151200000002205020400000000
020000000001000000010261110000001204010300000000
000400000403000000010343400000001102030100000000
000400000001000000010431300000002103050500000000
000400000403000000010523600000001000040200000000
000400000001000000010611500000002001050500000000

Baladi (6) @ 0x5a2a0
DP, DP, DP, DP, DP, DP
000400000403000000010300000000001204030300000000
000400000403000000010100000000001102010100000000
000400000403000000010200000000002103020200000000
000400000403000000010400000000002205040400000000
000400000403000000010500000000001000050500000000
000400000403000000010600000000002001060600000000

-------------------------AMD9000Controller.kext-------------------------

Exmoor (6) @ 0x5db90
LVDS, LVDS, DP, DP, DP, DP
020000000001000000010151200000002205020400000000
020000000001000000010261110000001204010300000000
000400000403000000010343400000001102030100000000
000400000001000000010431300000002103050500000000
000400000403000000010523600000001000040200000000
000400000001000000010611500000002001050500000000

OPM (6) @ 0x5dc20
DP, DP, DP, DP, DP, DP
000400000403000000000001000000001000010100000000
000400000403000000000001000000002001020200000000
000400000403000000000001000000001102030300000000
000400000403000000000001000000002103040400000000
000400000403000000000001000000001204050500000000
000400000403000000000001000000002205060600000000

MalteseS (1) @ 0x5dcd0
HDMI
000800000402000000010100000000001204030100000000

Lagotto (4) @ 0x5dcf0
DP, HDMI, DVI-D, DVI-D
000400000403000000010100000000001102040100000000
000800000402000000010200000000002103050300000000
040000000402000000010300000000000000010500000000
040000000402000000010400000000000204060600000000

GreyhoundS (1) @ 0x5dd60
HDMI
000800000402000000010100000000001204030100000000

Maltese (6) @ 0x5ddf0
DP, DP, DP, DP, DP, DP
000400000403000000010123200000001000010300000000
000400000403000000010213100000002001020400000000
000400000403000000010343400000001102030100000000
000400000403000000010433300000002103040200000000
000400000403000000010563600000001204050500000000
000400000403000000010653500000002205060600000000

Labrador (6) @ 0x5deb0
LVDS, LVDS, DP, DP, DP, DP
020000000001000000010131200000002103020400000000
020000000001000000010241110000001102010300000000
000400000403000000010323400000001000030100000000
000400000001000000010411300000002001050500000000
000400000403000000010563600000001204040200000000
000400000001000000010651500000002205050500000000

Basset (4) @ 0x5df40
LVDS, LVDS, DP, DP
020000000001000000010131200000002103020200000000
020000000001000000010241110000001102010100000000
000400000403000000010323400000001000030300000000
000400000403000000010413300000002001040400000000

Greyhound (6) @ 0x5e000
DP, DP, DP, DP, DP, DP
000400000403000000010123200000001000010300000000
000400000403000000010213100000002001020400000000
000400000403000000010343400000001102030100000000
000400000403000000010433300000002103040200000000
000400000403000000010563600000001204050500000000
000400000403000000010653500000002205060600000000

Baladi (6) @ 0x5e090
DP, DP, DP, DP, DP, DP
000400000403000000010300000000001204030300000000
000400000403000000010100000000001102010100000000
000400000403000000010200000000002103020200000000
000400000403000000010400000000002205040400000000
000400000403000000010500000000001000050500000000
000400000403000000010600000000002001060600000000

-------------------------AMD9500Controller.kext-------------------------

Orinoco (5) @ 0x6ef30
DP, DP, HDMI, HDMI, DVI-D
000400000403000000010101000000001204060100000000
000400000403000000010201000000002205040300000000
000800000402000000010300000000001102010200000000
000800000402000000010400000000002103050400000000
040000000400000000010500000000000000030600000000

Exmoor (6) @ 0x6efc0
LVDS, LVDS, DP, DP, DP, DP
020000000001000000010151200000002205020400000000
020000000001000000010261110000001204010300000000
000400000403000000010343400000001102030100000000
000400000001000000010431300000002103050500000000
000400000403000000010523600000001000040200000000
000400000001000000010611500000002001050500000000

Elqui (5) @ 0x6f050
LVDS, LVDS, DP, DP, DP
020000000001000000010141200000001102020400000000
020000000001000000010231110000002103010300000000
000400000001000000010313500000002001030100000000
000400000001000000010413500000001204040200000000
000400000403000000010501000000001000050500000000

Florin (6) @ 0x6f0d0
LVDS, LVDS, DP, DP, DP, DP
020000000001000000010141200000001102020400000000
020000000001000000010231110000002103010300000000
000400000001000000010313400000002001030100000000
000400000001000000010421300000001000050500000000
000400000001000000010553600000002205040200000000
000400000001000000010661500000001204060600000000

Sinu (6) @ 0x6f1e0
LVDS, LVDS, DP, DP, DP, DP
020000000001000000010141200000001102020400000000
020000000001000000010231110000002103010300000000
000400000001000000010313400000002001030100000000
000400000001000000010421300000001000050500000000
000400000001000000010553600000002205040200000000
000400000001000000010661500000001204060600000000

Yelcho (6) @ 0x6f270
DP, DP, HDMI, DP, DP, DP
000400000001000000010111000000001204060100000000
000400000001000000010321000000002205040300000000
000800000402000000010500000000002103050400000000
000400000001000000014251000000001000000000000000
000400000001000000014461000000002001000000000000
000400000001000000014601000000001102000000000000

Acre (3) @ 0x6f360
DP, HDMI, DVI-D
000400000403000000010101000000001102020100000000
000800000402000000010200000000002103050400000000
040000000402000000010300000000000000030500000000

Huallaga (3) @ 0x6f3b0
DP, DP, HDMI
000400000403000000010101000000001204040300000000
000400000403000000010201000000001102010200000000
000800000402000000010300000000002103050400000000

Berbice (5) @ 0x6f430
LVDS, DP, DP, DP, DP
020000000001000039050108000000002001010100000000
000400000001000000010243300000001000020200000000
000400000001000000010313200000002103030300000000
000400000001000000010453500000001102040400000000
000400000001000000010533400000001204050500000000

Longavi (5) @ 0x6f4b0
LVDS, DP, DP, DP, DP
020000000001000039050108000000002001010100000000
000400000001000000010243300000001000020200000000
000400000001000000010313200000002103030300000000
000400000001000000010453500000001102040400000000
000400000001000000010533400000001204050500000000

Tolten (5) @ 0x6f570
LVDS, LVDS, DP, DP, DP
020000000001000000010141200000001102020400000000
020000000001000000010231110000002103010300000000
000400000001000000010313500000002001030100000000
000400000001000000010413500000001204040200000000
000400000001000000010501000000001000050500000000

Palena (5) @ 0x6f5f0
LVDS, DP, DP, DP, DP
020000000001000039050108000000002001010100000000
000400000001000000010243300000001000020200000000
000400000001000000010313200000002103030300000000
000400000001000000010453500000001102040400000000
000400000001000000010533400000001204050500000000

Caroni (5) @ 0x6f670
LVDS, LVDS, DP, DP, DP
020000000001000000010141200000001102020400000000
020000000001000000010231110000002103010300000000
000400000001000000010313500000002001030100000000
000400000001000000010413500000001204040200000000
000400000001000000010501000000001000050500000000

Salado (5) @ 0x6f6f0
DP, DP, DP, DP, DP
000400000403000000000001000000001000020200000000
000400000403000000000001000000002001010100000000
000400000403000000000001000000001102040400000000
000400000403000000000001000000002103030300000000
000400000403000000000001000000001204050500000000

Guariba (6) @ 0x6f770
DP, DP, DP, HDMI, DVI-D, DP
000400000403000000010101000000001204060100000000
000400000403000000010201000000002205040300000000
000400000403000000010301000000001102010200000000
000800000402000000010400000000002103050400000000
040000000402000000010500000000000000030600000000
000400000001000000010601000000002001020500000000

Dayman (6) @ 0x6f800
DP, DP, DP, HDMI, DVI-D, DP
000400000403000000010101000000001204060100000000
000400000403000000010201000000002205040300000000
000400000403000000010301000000001102010200000000
000800000402000000010400000000002103050400000000
040000000402000000010500000000000000030600000000
000400000001000000010601000000002001020500000000

Baladi (6) @ 0x6f890
DP, DP, DP, DP, DP, DP
000400000403000000010300000000001204030300000000
000400000403000000010100000000001102010100000000
000400000403000000010200000000002103020200000000
000400000403000000010400000000002205040400000000
000400000403000000010500000000001000050500000000
000400000403000000010600000000002001060600000000

OPM (5) @ 0x6f920
DP, DP, DP, DP, DP
000400000403000000000001000000001102020200000000
000400000403000000000001000000002103030300000000
000400000403000000000001000000001204010100000000
000400000403000000000001000000001000040400000000
000400000403000000000001000000002001050500000000

attached is a downloadable copy of the script
Usage:
open terminal and type sudo php then one space and drag in the script enter your password and hit enter

Enjoy hacking
 

Attachments

  • Mojave AMD framebuffers.zip
    1.9 KB · Views: 654
Back
Top