diff options
author | notaz | 2012-10-29 01:08:35 +0200 |
---|---|---|
committer | notaz | 2012-11-02 03:03:39 +0200 |
commit | fa56d36096cd4ab2b227ce2aa61c8404b8874689 (patch) | |
tree | 21fafd8723022995c1ec9e00914cd1478a3d0476 /plugins/gpu-gles | |
parent | b7569147823a8fc5a9de98e5d491da906e119296 (diff) | |
download | pcsx_rearmed-fa56d36096cd4ab2b227ce2aa61c8404b8874689.tar.gz pcsx_rearmed-fa56d36096cd4ab2b227ce2aa61c8404b8874689.tar.bz2 pcsx_rearmed-fa56d36096cd4ab2b227ce2aa61c8404b8874689.zip |
move blit to core, allow filtering while blitting
also adds libpicofe to pull filters from, and filter related UI stuff
Diffstat (limited to 'plugins/gpu-gles')
-rw-r--r-- | plugins/gpu-gles/gpulib_if.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/gpu-gles/gpulib_if.c b/plugins/gpu-gles/gpulib_if.c index d245c44..068dc41 100644 --- a/plugins/gpu-gles/gpulib_if.c +++ b/plugins/gpu-gles/gpulib_if.c @@ -715,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; + if (cbs->pl_set_gpu_caps) + cbs->pl_set_gpu_caps(GPU_CAP_OWNS_DISPLAY); set_vram(gpu.vram); } |