Hi Daniel Schaeffer,
Thank you for your quick reply.
I check the file, and I found the following code.
According this code, I think memory allocation size for GPU is 2MB, right?
=====
static ulong registerMemSize = 2 << 10;
module_param(registerMemSize, ulong, 0644);
static int irqLine2D = -1;
module_param(irqLine2D, int, 0644);
static ulong registerMemBase2D = 0x00000000;
module_param(registerMemBase2D, ulong, 0644);
static ulong registerMemSize2D = 2 << 10;
module_param(registerMemSize2D, ulong, 0644);
static int irqLineVG = -1;
module_param(irqLineVG, int, 0644);
static ulong registerMemBaseVG = 0x00000000;
module_param(registerMemBaseVG, ulong, 0644);
static ulong registerMemSizeVG = 2 << 10;
module_param(registerMemSizeVG, ulong, 0644);
=====
And which is memory allocation setting for OpenGL(3D)?
Best Regards,
Satoshi Shimoda