plugins: drop arch filename extensions
[pcsx_rearmed.git] / plugins / gpulib / vout_pl.c
CommitLineData
56f08d83 1/*
1f219c7b 2 * video output handling using plugin_lib
56f08d83 3 * (C) GraÅžvydas "notaz" Ignotas, 2011
4 *
5 * This work is licensed under the terms of any of these licenses
6 * (at your option):
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.
10 */
11
aafcb4dd 12#include <string.h>
56f08d83 13#include "gpu.h"
62d7fa95 14#include "cspace.h"
56f08d83 15#include "../../frontend/plugin_lib.h"
56f08d83 16
17static const struct rearmed_cbs *cbs;
56f08d83 18
19int vout_init(void)
20{
21 return 0;
22}
23
24int vout_finish(void)
25{
26 return 0;
27}
28
fa56d360 29static void check_mode_change(int force)
56f08d83 30{
6f2ee2be 31 static uint32_t old_status;
32 static int old_h;
0b02eb77 33 int w = gpu.screen.hres;
34 int h = gpu.screen.h;
e4c83ca6 35 int w_out = w;
36 int h_out = h;
0b02eb77 37
38 gpu.state.enhancement_active =
a8be0deb 39 gpu.get_enhancement_bufer != NULL && gpu.state.enhancement_enable
0b02eb77 40 && w <= 512 && h <= 256 && !gpu.status.rgb24;
41
42 if (gpu.state.enhancement_active) {
e4c83ca6 43 w_out *= 2;
44 h_out *= 2;
0b02eb77 45 }
7d993ee2 46
47 // width|rgb24 change?
fa56d360 48 if (force || (gpu.status.reg ^ old_status) & ((7<<16)|(1<<21)) || h != old_h)
7d993ee2 49 {
50 old_status = gpu.status.reg;
0b02eb77 51 old_h = h;
52
e4c83ca6 53 cbs->pl_vout_set_mode(w_out, h_out, w, h,
4ea7de6a 54 (gpu.status.rgb24 && !cbs->only_16bpp) ? 24 : 16);
7d993ee2 55 }
56}
57
fa56d360 58void vout_update(void)
7d993ee2 59{
8dd855cd 60 int x = gpu.screen.x & ~1; // alignment needed by blitter
56f08d83 61 int y = gpu.screen.y;
62 int w = gpu.screen.w;
8dd855cd 63 int h = gpu.screen.h;
5f26e402 64 uint16_t *vram = gpu.vram;
fa56d360 65 int vram_h = 512;
66
67 if (w == 0 || h == 0)
aafcb4dd 68 return;
69
fa56d360 70 check_mode_change(0);
a8be0deb 71 if (gpu.state.enhancement_active)
fa56d360 72 vram = gpu.get_enhancement_bufer(&x, &y, &w, &h, &vram_h);
56f08d83 73
fa56d360 74 if (y + h > vram_h) {
75 if (y + h - vram_h > h / 2) {
76 // wrap
fa56d360 77 h -= vram_h - y;
c65553d0 78 y = 0;
56f08d83 79 }
fa56d360 80 else
81 // clip
82 h = vram_h - y;
56f08d83 83 }
84
fa56d360 85 vram += y * 1024 + x;
56f08d83 86
fa56d360 87 cbs->pl_vout_flip(vram, 1024, gpu.status.rgb24, w, h);
56f08d83 88}
89
aafcb4dd 90void vout_blank(void)
91{
fa56d360 92 int w = gpu.screen.hres;
93 int h = gpu.screen.h;
94 if (gpu.state.enhancement_active) {
95 w *= 2;
96 h *= 2;
aafcb4dd 97 }
fa56d360 98 cbs->pl_vout_flip(NULL, 1024, gpu.status.rgb24, w, h);
aafcb4dd 99}
100
096ec49b 101long GPUopen(void **unused)
56f08d83 102{
19e7cf87 103 gpu.frameskip.active = 0;
104 gpu.frameskip.frame_ready = 1;
fc84f618 105
9394ada5 106 cbs->pl_vout_open();
fa56d360 107 check_mode_change(1);
56f08d83 108 return 0;
109}
110
111long GPUclose(void)
112{
9394ada5 113 cbs->pl_vout_close();
56f08d83 114 return 0;
115}
116
5440b88e 117void vout_set_config(const struct rearmed_cbs *cbs_)
56f08d83 118{
119 cbs = cbs_;
120}
121
122// vim:shiftwidth=2:expandtab