2 * video output handling using plugin_lib
3 * (C) GraÅžvydas "notaz" Ignotas, 2011
5 * This work is licensed under the terms of any of these licenses
7 * - GNU GPL, version 2 or later.
8 * - GNU LGPL, version 2.1 or later.
9 * See the COPYING file in the top-level directory.
14 #include "../../frontend/plugin_lib.h"
16 static const struct rearmed_cbs *cbs;
28 static void check_mode_change(int force)
30 static uint32_t old_status;
32 int w = gpu.screen.hres;
37 gpu.state.enhancement_active =
38 gpu.get_enhancement_bufer != NULL && gpu.state.enhancement_enable
39 && w <= 512 && h <= 256 && !gpu.status.rgb24;
41 if (gpu.state.enhancement_active) {
46 // width|rgb24 change?
47 if (force || (gpu.status.reg ^ old_status) & ((7<<16)|(1<<21)) || h != old_h)
49 old_status = gpu.status.reg;
52 cbs->pl_vout_set_mode(w_out, h_out, w, h, gpu.status.rgb24 ? 24 : 16);
56 void vout_update(void)
58 int x = gpu.screen.x & ~1; // alignment needed by blitter
62 uint16_t *vram = gpu.vram;
69 if (gpu.state.enhancement_active)
70 vram = gpu.get_enhancement_bufer(&x, &y, &w, &h, &vram_h);
73 if (y + h - vram_h > h / 2) {
85 cbs->pl_vout_flip(vram, 1024, gpu.status.rgb24, w, h);
90 int w = gpu.screen.hres;
94 if (gpu.state.enhancement_active) {
98 cbs->pl_vout_flip(NULL, 1024, gpu.status.rgb24, w, h);
101 long GPUopen(void **unused)
103 gpu.frameskip.active = 0;
104 gpu.frameskip.frame_ready = 1;
107 check_mode_change(1);
114 cbs->pl_vout_close();
118 void vout_set_config(const struct rearmed_cbs *cbs_)
123 // vim:shiftwidth=2:expandtab