diff options
author | notaz | 2012-08-19 22:39:49 +0300 |
---|---|---|
committer | notaz | 2012-10-12 00:05:08 +0300 |
commit | 9ee0fd5b333039b1140d90f935aa9299825f1e42 (patch) | |
tree | 5fa0d39647613e0e5b4ea3d582b91ecbc3e1ae91 /plugins/gpu-gles | |
parent | 50f9355a2338111d940ed408f52fe1defe4df23e (diff) | |
download | pcsx_rearmed-9ee0fd5b333039b1140d90f935aa9299825f1e42.tar.gz pcsx_rearmed-9ee0fd5b333039b1140d90f935aa9299825f1e42.tar.bz2 pcsx_rearmed-9ee0fd5b333039b1140d90f935aa9299825f1e42.zip |
start mmap'ing vram, with hugetlb if possible
Diffstat (limited to 'plugins/gpu-gles')
-rw-r--r-- | plugins/gpu-gles/gpulib_if.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/plugins/gpu-gles/gpulib_if.c b/plugins/gpu-gles/gpulib_if.c index 09dc200..d245c44 100644 --- a/plugins/gpu-gles/gpulib_if.c +++ b/plugins/gpu-gles/gpulib_if.c @@ -479,10 +479,15 @@ switch((gdata>>24)&0xff) static int is_opened; -int renderer_init(void) +static void set_vram(void *vram) { - psxVub=(void *)gpu.vram; + psxVub=vram; psxVuw=(unsigned short *)psxVub; +} + +int renderer_init(void) +{ + set_vram(gpu.vram); PSXDisplay.RGB24 = FALSE; // init some stuff PSXDisplay.Interlaced = FALSE; @@ -710,6 +715,8 @@ void renderer_set_config(const struct rearmed_cbs *cbs_) bUseFastMdec = cbs->gpu_peopsgl.bUseFastMdec; iTexGarbageCollection = cbs->gpu_peopsgl.iTexGarbageCollection; iVRamSize = cbs->gpu_peopsgl.iVRamSize; + + set_vram(gpu.vram); } void SetAspectRatio(void) |