/* This is a heavily modified version of the file used in RetroArch */ /* RetroArch - A frontend for libretro. * Copyright (C) 2010-2014 - Hans-Kristian Arntzen * Copyright (C) 2011-2014 - Daniel De Matteis * * RetroArch is free software: you can redistribute it and/or modify it under the terms * of the GNU General Public License as published by the Free Software Found- * ation, either version 3 of the License, or (at your option) any later version. * * RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR * PURPOSE. See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along with RetroArch. * If not, see . */ #include "../stdafx.h" #define supereagle_interpolate_xrgb8888(A, B) ((((A) & 0xFEFEFEFE) >> 1) + (((B) & 0xFEFEFEFE) >> 1) + ((A) & (B) & 0x01010101)) #define supereagle_interpolate2_xrgb8888(A, B, C, D) ((((A) & 0xFCFCFCFC) >> 2) + (((B) & 0xFCFCFCFC) >> 2) + (((C) & 0xFCFCFCFC) >> 2) + (((D) & 0xFCFCFCFC) >> 2) + (((((A) & 0x03030303) + ((B) & 0x03030303) + ((C) & 0x03030303) + ((D) & 0x03030303)) >> 2) & 0x03030303)) #define supereagle_result(A, B, C, D) (((A) != (C) || (A) != (D)) - ((B) != (C) || (B) != (D))); #define supereagle_declare_variables(typename_t, in) \ typename_t product1a, product1b, product2a, product2b; \ const typename_t colorB1 = *(in - prevline + 0); \ const typename_t colorB2 = *(in - prevline + nextcolumn); \ const typename_t color4 = *(in - prevcolumn); \ const typename_t color5 = *(in + 0); \ const typename_t color6 = *(in + nextcolumn); \ const typename_t colorS2 = *(in + nextcolumn2); \ const typename_t color1 = *(in + nextline - prevcolumn); \ const typename_t color2 = *(in + nextline + 0); \ const typename_t color3 = *(in + nextline + nextcolumn); \ const typename_t colorS1 = *(in + nextline + nextcolumn2); \ const typename_t colorA1 = *(in + nextline2 + 0); \ const typename_t colorA2 = *(in + nextline2 + nextcolumn) #ifndef supereagle_function #define supereagle_function(result_cb, interpolate_cb, interpolate2_cb) \ if (color2 == color6 && color5 != color3) \ { \ product1b = product2a = color2; \ if ((color1 == color2) || (color6 == colorB2)) \ { \ product1a = interpolate_cb(color2, color5); \ product1a = interpolate_cb(color2, product1a); \ } \ else \ { \ product1a = interpolate_cb(color5, color6); \ } \ if ((color6 == colorS2) || (color2 == colorA1)) \ { \ product2b = interpolate_cb(color2, color3); \ product2b = interpolate_cb(color2, product2b); \ } \ else \ { \ product2b = interpolate_cb(color2, color3); \ } \ } \ else if (color5 == color3 && color2 != color6) \ { \ product2b = product1a = color5; \ if ((colorB1 == color5) || (color3 == colorS1)) \ { \ product1b = interpolate_cb(color5, color6); \ product1b = interpolate_cb(color5, product1b); \ } \ else \ { \ product1b = interpolate_cb(color5, color6); \ } \ if ((color3 == colorA2) || (color4 == color5)) \ { \ product2a = interpolate_cb(color5, color2); \ product2a = interpolate_cb(color5, product2a); \ } \ else \ { \ product2a = interpolate_cb(color2, color3); \ } \ } \ else if (color5 == color3 && color2 == color6) \ { \ int r = 0; \ r += supereagle_result(color6, color5, color1, colorA1); \ r += supereagle_result(color6, color5, color4, colorB1); \ r += supereagle_result(color6, color5, colorA2, colorS1); \ r += supereagle_result(color6, color5, colorB2, colorS2); \ if (r > 0) \ { \ product1b = product2a = color2; \ product1a = product2b = interpolate_cb(color5, color6); \ } \ else if (r < 0) \ { \ product2b = product1a = color5; \ product1b = product2a = interpolate_cb(color5, color6); \ } \ else \ { \ product2b = product1a = color5; \ product1b = product2a = color2; \ } \ } \ else \ { \ product2b = product1a = interpolate_cb(color2, color6); \ product2b = interpolate2_cb(color3, color3, color3, product2b); \ product1a = interpolate2_cb(color5, color5, color5, product1a); \ product2a = product1b = interpolate_cb(color5, color3); \ product2a = interpolate2_cb(color2, color2, color2, product2a); \ product1b = interpolate2_cb(color6, color6, color6, product1b); \ } \ out[0] = product1a; \ out[1] = product1b; \ out[dst_stride] = product2a; \ out[dst_stride + 1] = product2b; \ ++in; \ out += 2 #endif void supereagle_generic_xrgb8888(unsigned width, unsigned height, uint32_t *src, unsigned src_stride, uint32_t *dst, unsigned dst_stride) { unsigned finish; int y = 0; int x = 0; for(; height; height--) { uint32_t *in = (uint32_t*)src; uint32_t *out = (uint32_t*)dst; int prevline = (y > 0 ? src_stride : 0); int nextline = (height > 1 ? src_stride : 0); int nextline2 = (height > 2 ? src_stride * 2 : nextline); for(finish = width; finish; finish -= 1) { int prevcolumn = (x > 0 ? 1 : 0); int nextcolumn = (finish > 1 ? 1 : 0); int nextcolumn2 = (finish > 2 ? 2 : nextcolumn); supereagle_declare_variables(uint32_t, in); supereagle_function(supereagle_result, supereagle_interpolate_xrgb8888, supereagle_interpolate2_xrgb8888); x++; } src += src_stride; dst += 2 * dst_stride; y++; x = 0; } }