X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=blobdiff_plain;f=plugins%2Fgpu-gles%2Fgpulib_if.c;h=068dc411e564e0a5f01f0cc5ac5fe0a3b9bbf189;hp=ce7f00dc2c7bc39d96ba60b2ab670a4f3c34e10f;hb=6f6fe96900374d8744473ce240279e66d1260191;hpb=38c2028e228dcf17f3b4b0ac7e6984d1e1c6df79 diff --git a/plugins/gpu-gles/gpulib_if.c b/plugins/gpu-gles/gpulib_if.c index ce7f00dc..068dc411 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; @@ -500,6 +505,14 @@ int renderer_init(void) return 0; } +void renderer_finish(void) +{ +} + +void renderer_notify_res_change(void) +{ +} + extern const unsigned char cmd_lengths[256]; // XXX: mostly dupe code from soft peops @@ -640,6 +653,14 @@ void vout_update(void) } } +void vout_blank(void) +{ +} + +void vout_set_config(const struct rearmed_cbs *cbs) +{ +} + static struct rearmed_cbs *cbs; long GPUopen(void **dpy) @@ -694,10 +715,10 @@ void renderer_set_config(const struct rearmed_cbs *cbs_) bUseFastMdec = cbs->gpu_peopsgl.bUseFastMdec; iTexGarbageCollection = cbs->gpu_peopsgl.iTexGarbageCollection; iVRamSize = cbs->gpu_peopsgl.iVRamSize; -} + if (cbs->pl_set_gpu_caps) + cbs->pl_set_gpu_caps(GPU_CAP_OWNS_DISPLAY); -void vout_set_config(const struct rearmed_cbs *cbs) -{ + set_vram(gpu.vram); } void SetAspectRatio(void)