Last active
July 21, 2018 14:07
-
-
Save faitno/ac7a4461e0faeab21687ad6e4807ea83 to your computer and use it in GitHub Desktop.
Increase VRAM in hackintosh intel hd3000 512->2048 mb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
In clover: `Kernel and Kext Patches`: | |
name find replace | |
AppleIntelSNBGraphicsFB C745BC00000020 C745BC00000080 | |
In file: /System/Library/Extensions/AppleIntelHD3000Graphics.kext/Contents/Info.plist | |
after | |
``` | |
<key>VRAMOverride</key> | |
<integer>0</integer> | |
``` | |
insert: | |
``` | |
<key>VRAMSize</key> | |
<integer>2048</integer> | |
``` | |
after that rebuild cashe in `kext wizard` app |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment