I have a Raspberry B and a Raspberry 2.
In the B model, I set the config file to gpu_mem_512=256
in order to get more memory for the graphics. It works fine. If I type the command vcgencmd get_mem gpu
it shows gpu=256M
as requested.
Now , with the Raspberry 2 model, there is a 1024M GPU, but, we can set it to work. We type gpu_mem_1024=512
, but the command vcgencmd get_mem gpu
shows gpu=64M
, and the application throws a OUT_OF_MEMORY when loading textures.
What is the correct config line?
_256
,_512
and now_1024
suffix settings control the split for each of those base-memory sizes and which one is used depends on what is on the RPi reading it.} I suspect that using agpu_mem
without will override one with if they BOTH appear... – SlySven Feb 07 '16 at 00:28