redquark-amiberry-rb/src/osdep/pandora_gfx.cpp

779 lines
19 KiB
C++
Raw Normal View History

2015-05-13 18:47:23 +00:00
#include "sysconfig.h"
#include "sysdeps.h"
#include "config.h"
#include "uae.h"
#include "options.h"
#include "gui.h"
2017-01-21 18:38:12 +01:00
#include "memory.h"
#include "newcpu.h"
2015-05-13 18:47:23 +00:00
#include "custom.h"
#include "xwin.h"
2015-05-13 18:47:23 +00:00
#include "drawing.h"
#include "inputdevice.h"
2015-05-13 18:47:23 +00:00
#include "savestate.h"
2015-09-09 21:49:41 +02:00
#include "picasso96.h"
#include "pandora_gfx.h"
2015-05-13 18:47:23 +00:00
#include <png.h>
2017-01-21 14:54:08 +01:00
#include "SDL.h"
2015-09-09 21:49:41 +02:00
/* SDL variable for output of emulation */
2017-01-21 18:38:12 +01:00
SDL_Surface *screen = NULL;
2015-09-09 21:49:41 +02:00
/* Possible screen modes (x and y resolutions) */
#define MAX_SCREEN_MODES 11
2017-01-21 17:28:43 +01:00
static int x_size_table[MAX_SCREEN_MODES] = { 640, 640, 720, 800, 800, 960, 1024, 1280, 1280, 1680, 1920 };
static int y_size_table[MAX_SCREEN_MODES] = { 400, 480, 400, 480, 600, 540, 768, 720, 800, 1050, 1080 };
2015-09-09 21:49:41 +02:00
struct PicassoResolution *DisplayModes;
struct MultiDisplay Displays[MAX_DISPLAYS];
2015-09-09 21:49:41 +02:00
int screen_is_picasso = 0;
2015-09-09 21:49:41 +02:00
static SDL_Surface *current_screenshot = NULL;
static char screenshot_filename_default[255]=
{
'/', 't', 'm', 'p', '/', 'n', 'u', 'l', 'l', '.', 'p', 'n', 'g', '\0'
2015-05-13 18:47:23 +00:00
};
char *screenshot_filename=(char *)&screenshot_filename_default[0];
FILE *screenshot_file=NULL;
static void CreateScreenshot(void);
static int save_thumb(char *path);
int delay_savestate_frame = 0;
int graphics_setup (void)
{
2015-09-09 21:49:41 +02:00
#ifdef PICASSO96
picasso_InitResolutions();
InitPicasso96();
2015-09-09 21:49:41 +02:00
#endif
return 1;
2015-05-13 18:47:23 +00:00
}
#ifdef WITH_LOGGING
SDL_Surface *liveInfo = NULL;
TTF_Font *liveFont = NULL;
int liveInfoCounter = 0;
void ShowLiveInfo(char *msg)
{
if(liveFont == NULL)
{
TTF_Init();
liveFont = TTF_OpenFont("data/FreeSans.ttf", 12);
}
if(liveInfo != NULL)
SDL_FreeSurface(liveInfo);
SDL_Color col;
col.r = 0xbf;
col.g = 0xbf;
col.b = 0xbf;
liveInfo = TTF_RenderText_Solid(liveFont, msg, col);
liveInfoCounter = 50 * 5;
}
void RefreshLiveInfo()
{
if(liveInfoCounter > 0)
{
SDL_Rect dst, src;
dst.x = 0;
dst.y = 2;
src.w = liveInfo->w;
src.h = liveInfo->h;
src.x = 0;
src.y = 0;
SDL_BlitSurface(liveInfo, &src, prSDLScreen, &dst);
liveInfoCounter--;
if(liveInfoCounter == 0)
{
SDL_FreeSurface(liveInfo);
liveInfo = NULL;
}
}
}
#endif
2015-05-13 18:47:23 +00:00
void InitAmigaVidMode(struct uae_prefs *p)
{
/* Initialize structure for Amiga video modes */
gfxvidinfo.pixbytes = 2;
2017-01-21 18:38:12 +01:00
gfxvidinfo.bufmem = (uae_u8 *)screen->pixels;
gfxvidinfo.outwidth = p->gfx_size.width;
gfxvidinfo.outheight = p->gfx_size.height;
2017-01-21 18:38:12 +01:00
gfxvidinfo.rowbytes = screen->pitch;
2017-01-21 17:28:43 +01:00
#ifdef PICASSO96
if (screen_is_picasso)
{
gfxvidinfo.outwidth = picasso_vidinfo.width;
gfxvidinfo.outheight = picasso_vidinfo.height;
}
#endif
2015-05-13 18:47:23 +00:00
}
void graphics_subshutdown (void)
{
2017-01-21 18:38:12 +01:00
if (screen != NULL)
2016-10-15 20:49:53 +02:00
{
2017-01-21 18:38:12 +01:00
SDL_FreeSurface(screen);
screen = NULL;
2016-10-15 20:49:53 +02:00
}
if (texture != NULL)
{
SDL_DestroyTexture(texture);
}
2016-10-15 20:49:53 +02:00
}
2015-09-09 21:49:41 +02:00
static void open_screen(struct uae_prefs *p)
2015-05-13 18:47:23 +00:00
{
2017-01-21 18:59:24 +01:00
int width;
int height;
2017-01-21 17:28:43 +01:00
#ifdef PICASSO96
if (screen_is_picasso)
{
width = picasso_vidinfo.width;
height = picasso_vidinfo.height;
}
else
#endif
{
p->gfx_resolution = p->gfx_size.width > 600 ? 1 : 0;
width = p->gfx_size.width;
height = p->gfx_size.height;
}
2016-10-15 20:49:53 +02:00
2017-01-21 18:59:24 +01:00
graphics_subshutdown();
screen = SDL_CreateRGBSurface(0, width, height, 16, 0, 0, 0, 0);
check_error_sdl(screen == nullptr, "Unable to create a surface");
2017-01-21 18:59:24 +01:00
SDL_RenderSetLogicalSize(renderer, width, height);
2017-01-21 18:59:24 +01:00
// Initialize SDL Texture for the renderer
texture = SDL_CreateTexture(renderer,
SDL_PIXELFORMAT_RGB565,
SDL_TEXTUREACCESS_STREAMING,
width,
height);
check_error_sdl(texture == nullptr, "Unable to create texture");
// Update the texture from the surface
2017-01-21 18:38:12 +01:00
SDL_UpdateTexture(texture, NULL, screen->pixels, screen->pitch);
SDL_RenderClear(renderer);
// Copy the texture on the renderer
SDL_RenderCopy(renderer, texture, NULL, NULL);
// Update the window surface (show the renderer)
SDL_RenderPresent(renderer);
2017-01-21 18:59:24 +01:00
if (screen != NULL)
{
InitAmigaVidMode(p);
init_row_map();
}
2015-09-09 21:49:41 +02:00
}
void update_display(struct uae_prefs *p)
{
open_screen(p);
SDL_ShowCursor(SDL_DISABLE);
framecnt = 1; // Don't draw frame before reset done
2015-05-13 18:47:23 +00:00
}
int check_prefs_changed_gfx (void)
{
int changed = 0;
if(currprefs.gfx_size.height != changed_prefs.gfx_size.height ||
currprefs.gfx_size.width != changed_prefs.gfx_size.width ||
currprefs.gfx_size_fs.width != changed_prefs.gfx_size_fs.width ||
currprefs.gfx_resolution != changed_prefs.gfx_resolution)
{
cfgfile_configuration_change(1);
currprefs.gfx_size.height = changed_prefs.gfx_size.height;
currprefs.gfx_size.width = changed_prefs.gfx_size.width;
currprefs.gfx_size_fs.width = changed_prefs.gfx_size_fs.width;
currprefs.gfx_resolution = changed_prefs.gfx_resolution;
update_display(&currprefs);
changed = 1;
}
if (currprefs.leds_on_screen != changed_prefs.leds_on_screen ||
currprefs.pandora_hide_idle_led != changed_prefs.pandora_hide_idle_led ||
currprefs.pandora_vertical_offset != changed_prefs.pandora_vertical_offset)
{
currprefs.leds_on_screen = changed_prefs.leds_on_screen;
currprefs.pandora_hide_idle_led = changed_prefs.pandora_hide_idle_led;
currprefs.pandora_vertical_offset = changed_prefs.pandora_vertical_offset;
changed = 1;
}
if (currprefs.chipset_refreshrate != changed_prefs.chipset_refreshrate)
{
currprefs.chipset_refreshrate = changed_prefs.chipset_refreshrate;
init_hz_full ();
changed = 1;
}
currprefs.filesys_limit = changed_prefs.filesys_limit;
return changed;
2015-05-13 18:47:23 +00:00
}
int lockscr (void)
{
2017-01-21 18:38:12 +01:00
SDL_LockSurface(screen);
return 1;
2015-05-13 18:47:23 +00:00
}
void unlockscr (void)
{
2017-01-21 18:38:12 +01:00
SDL_UnlockSurface(screen);
2015-05-13 18:47:23 +00:00
}
void wait_for_vsync(void)
{
2017-01-21 17:28:43 +01:00
}
2015-10-11 14:23:51 +02:00
void flush_screen ()
2015-05-13 18:47:23 +00:00
{
if (savestate_state == STATE_DOSAVE)
2015-05-13 18:47:23 +00:00
{
if(delay_savestate_frame > 0)
--delay_savestate_frame;
else
{
CreateScreenshot();
save_thumb(screenshot_filename);
savestate_state = 0;
}
2015-05-13 18:47:23 +00:00
}
#ifdef WITH_LOGGING
RefreshLiveInfo();
#endif
2017-01-21 17:28:43 +01:00
// unsigned long start = read_processor_time();
// if(current_vsync_frame == 0)
// {
// // Old style for vsync and idle time calc
// if(start < next_synctime && next_synctime - start > time_per_frame - 1000)
// usleep((next_synctime - start) - 750);
// ioctl(fbdev, OMAPFB_WAITFORVSYNC, &current_vsync_frame);
// }
// else
// {
// // New style for vsync and idle time calc
// int wait_till = current_vsync_frame;
// do
// {
// ioctl(fbdev, OMAPFB_WAITFORVSYNC_FRAME, &current_vsync_frame);
// }
// while (wait_till >= current_vsync_frame);
//
// if(wait_till + 1 != current_vsync_frame)
// {
// // We missed a vsync...
// next_synctime = 0;
// }
// current_vsync_frame += currprefs.gfx_framerate;
// }
// Update the texture from the surface
2017-01-21 18:38:12 +01:00
SDL_UpdateTexture(texture, NULL, screen->pixels, screen->pitch);
// Copy the texture on the renderer
SDL_RenderCopy(renderer, texture, NULL, NULL);
// Update the window surface (show the renderer)
SDL_RenderPresent(renderer);
2017-01-21 18:59:24 +01:00
// last_synctime = read_processor_time();
2016-10-15 20:49:53 +02:00
2017-01-21 18:59:24 +01:00
// if(!screen_is_picasso)
// gfxvidinfo.bufmem = (uae_u8 *)screen->pixels;
2017-01-21 17:28:43 +01:00
// if(last_synctime - next_synctime > time_per_frame * (1 + currprefs.gfx_framerate) - 1000 || next_synctime < start)
// adjust_idletime(0);
// else
// adjust_idletime(next_synctime - start);
//
// if (last_synctime - next_synctime > time_per_frame - 5000)
// next_synctime = last_synctime + time_per_frame * (1 + currprefs.gfx_framerate);
// else
// next_synctime = next_synctime + time_per_frame * (1 + currprefs.gfx_framerate);
2015-05-13 18:47:23 +00:00
init_row_map();
2015-05-13 18:47:23 +00:00
}
static void graphics_subinit (void)
{
2017-01-21 18:38:12 +01:00
if (screen == NULL)
2016-10-15 20:49:53 +02:00
{
fprintf(stderr, "Unable to set video mode: %s\n", SDL_GetError());
return;
}
else
{
SDL_ShowCursor(SDL_DISABLE);
InitAmigaVidMode(&currprefs);
}
2015-05-13 18:47:23 +00:00
}
STATIC_INLINE int bitsInMask (unsigned long mask)
{
/* count bits in mask */
int n = 0;
while (mask)
{
n += mask & 1;
mask >>= 1;
}
return n;
2015-05-13 18:47:23 +00:00
}
STATIC_INLINE int maskShift (unsigned long mask)
{
/* determine how far mask is shifted */
int n = 0;
while (!(mask & 1))
{
n++;
mask >>= 1;
}
return n;
2015-05-13 18:47:23 +00:00
}
static int init_colors (void)
{
int i;
int red_bits, green_bits, blue_bits;
int red_shift, green_shift, blue_shift;
2015-05-13 18:47:23 +00:00
/* Truecolor: */
2017-01-21 18:38:12 +01:00
red_bits = bitsInMask(screen->format->Rmask);
green_bits = bitsInMask(screen->format->Gmask);
blue_bits = bitsInMask(screen->format->Bmask);
red_shift = maskShift(screen->format->Rmask);
green_shift = maskShift(screen->format->Gmask);
blue_shift = maskShift(screen->format->Bmask);
alloc_colors64k (red_bits, green_bits, blue_bits, red_shift, green_shift, blue_shift, 0);
notice_new_xcolors();
for (i = 0; i < 4096; i++)
xcolors[i] = xcolors[i] * 0x00010001;
2015-05-13 18:47:23 +00:00
return 1;
2015-05-13 18:47:23 +00:00
}
2015-09-09 21:49:41 +02:00
/*
* Find the colour depth of the display
*/
static int get_display_depth (void)
{
// const SDL_VideoInfo *vid_info;
// int depth = 0;
2017-01-21 15:03:47 +01:00
int depth = 16;
2016-10-15 20:49:53 +02:00
// if ((vid_info = SDL_GetVideoInfo()))
// {
// depth = vid_info->vfmt->BitsPerPixel;
2016-10-15 20:49:53 +02:00
/* Don't trust the answer if it's 16 bits; the display
* could actually be 15 bits deep. We'll count the bits
* ourselves */
// if (depth == 16)
// depth = bitsInMask (vid_info->vfmt->Rmask) + bitsInMask (vid_info->vfmt->Gmask) + bitsInMask (vid_info->vfmt->Bmask);
// }
return depth;
2015-09-09 21:49:41 +02:00
}
int GetSurfacePixelFormat(void)
{
int depth = get_display_depth();
int unit = (depth + 1) & 0xF8;
return (unit == 8 ? RGBFB_CHUNKY
: depth == 15 && unit == 16 ? RGBFB_R5G5B5
: depth == 16 && unit == 16 ? RGBFB_R5G6B5
: unit == 24 ? RGBFB_B8G8R8
: unit == 32 ? RGBFB_R8G8B8A8
: RGBFB_NONE);
}
int graphics_init (bool mousecapture)
2015-05-13 18:47:23 +00:00
{
graphics_subinit ();
2015-05-13 18:47:23 +00:00
if (!init_colors ())
return 0;
return 1;
2015-05-13 18:47:23 +00:00
}
void graphics_leave (void)
{
graphics_subshutdown ();
SDL_DestroyRenderer(renderer);
SDL_DestroyWindow(sdlWindow);
SDL_VideoQuit();
2015-05-13 18:47:23 +00:00
}
2017-01-21 18:38:12 +01:00
#define systemRedShift (screen->format->Rshift)
#define systemGreenShift (screen->format->Gshift)
#define systemBlueShift (screen->format->Bshift)
#define systemRedMask (screen->format->Rmask)
#define systemGreenMask (screen->format->Gmask)
#define systemBlueMask (screen->format->Bmask)
2015-05-13 18:47:23 +00:00
static int save_png(SDL_Surface* surface, char *path)
{
int w = surface->w;
int h = surface->h;
unsigned char * pix = (unsigned char *)surface->pixels;
unsigned char writeBuffer[1024 * 3];
FILE *f = fopen(path,"wb");
if(!f) return 0;
png_structp png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING,
NULL,
NULL,
NULL);
if(!png_ptr)
{
fclose(f);
return 0;
}
2015-05-13 18:47:23 +00:00
png_infop info_ptr = png_create_info_struct(png_ptr);
2015-05-13 18:47:23 +00:00
if(!info_ptr)
{
png_destroy_write_struct(&png_ptr,NULL);
fclose(f);
return 0;
}
2015-05-13 18:47:23 +00:00
png_init_io(png_ptr,f);
2015-05-13 18:47:23 +00:00
png_set_IHDR(png_ptr,
info_ptr,
w,
h,
8,
PNG_COLOR_TYPE_RGB,
PNG_INTERLACE_NONE,
PNG_COMPRESSION_TYPE_DEFAULT,
PNG_FILTER_TYPE_DEFAULT);
2015-05-13 18:47:23 +00:00
png_write_info(png_ptr,info_ptr);
2015-05-13 18:47:23 +00:00
unsigned char *b = writeBuffer;
2015-05-13 18:47:23 +00:00
int sizeX = w;
int sizeY = h;
int y;
int x;
2015-05-13 18:47:23 +00:00
unsigned short *p = (unsigned short *)pix;
for(y = 0; y < sizeY; y++)
{
for(x = 0; x < sizeX; x++)
{
unsigned short v = p[x];
*b++ = ((v & systemRedMask ) >> systemRedShift ) << 3; // R
*b++ = ((v & systemGreenMask) >> systemGreenShift) << 2; // G
*b++ = ((v & systemBlueMask ) >> systemBlueShift ) << 3; // B
}
p += surface->pitch / 2;
png_write_row(png_ptr,writeBuffer);
b = writeBuffer;
}
2015-05-13 18:47:23 +00:00
png_write_end(png_ptr, info_ptr);
2015-05-13 18:47:23 +00:00
png_destroy_write_struct(&png_ptr, &info_ptr);
2015-05-13 18:47:23 +00:00
fclose(f);
return 1;
2015-05-13 18:47:23 +00:00
}
static void CreateScreenshot(void)
{
int w, h;
2015-05-13 18:47:23 +00:00
if(current_screenshot != NULL)
{
SDL_FreeSurface(current_screenshot);
current_screenshot = NULL;
}
2015-05-13 18:47:23 +00:00
2017-01-21 18:38:12 +01:00
w = screen->w;
h = screen->h;
current_screenshot = SDL_CreateRGBSurfaceFrom(screen->pixels,
w,
h,
screen->format->BitsPerPixel,
screen->pitch,
screen->format->Rmask,
screen->format->Gmask,
screen->format->Bmask,
screen->format->Amask);
2015-05-13 18:47:23 +00:00
}
static int save_thumb(char *path)
{
int ret = 0;
if(current_screenshot != NULL)
{
ret = save_png(current_screenshot, path);
SDL_FreeSurface(current_screenshot);
current_screenshot = NULL;
}
return ret;
2015-05-13 18:47:23 +00:00
}
2015-09-09 21:49:41 +02:00
2016-11-30 22:25:43 +01:00
bool vsync_switchmode (int hz)
{
// int changed_height = changed_prefs.gfx_size.height;
//
// if (hz >= 55)
// hz = 60;
// else
// hz = 50;
//
// if(hz == 50 && currVSyncRate == 60)
// {
// // Switch from NTSC -> PAL
// switch(changed_height) {
// case 200: changed_height = 240; break;
// case 216: changed_height = 262; break;
// case 240: changed_height = 270; break;
// case 256: changed_height = 270; break;
// case 262: changed_height = 270; break;
// case 270: changed_height = 270; break;
// }
// }
// else if(hz == 60 && currVSyncRate == 50)
// {
// // Switch from PAL -> NTSC
// switch(changed_height) {
// case 200: changed_height = 200; break;
// case 216: changed_height = 200; break;
// case 240: changed_height = 200; break;
// case 256: changed_height = 216; break;
// case 262: changed_height = 216; break;
// case 270: changed_height = 240; break;
// }
// }
//
// if(changed_height == currprefs.gfx_size.height && hz == currprefs.chipset_refreshrate)
// return true;
//
// changed_prefs.gfx_size.height = changed_height;
2016-11-30 22:25:43 +01:00
return true;
}
bool target_graphics_buffer_update (void)
{
2017-01-21 17:28:43 +01:00
bool rate_changed = 0;
2017-01-21 18:38:12 +01:00
2017-01-21 17:28:43 +01:00
if (currprefs.gfx_size.height != changed_prefs.gfx_size.height)
{
update_display(&changed_prefs);
rate_changed = true;
}
if (rate_changed)
{
fpscounter_reset();
time_per_frame = 1000 * 1000 / (currprefs.chipset_refreshrate);
}
return true;
2016-11-30 22:25:43 +01:00
}
2015-09-09 21:49:41 +02:00
#ifdef PICASSO96
int picasso_palette (void)
{
int i, changed;
2017-01-21 18:59:24 +01:00
changed = 0;
for (i = 0; i < 256; i++) {
int r = picasso96_state.CLUT[i].Red;
int g = picasso96_state.CLUT[i].Green;
int b = picasso96_state.CLUT[i].Blue;
int value = (r << 16 | g << 8 | b);
uae_u32 v = CONVERT_RGB(value);
if (v != picasso_vidinfo.clut[i]) {
picasso_vidinfo.clut[i] = v;
changed = 1;
}
}
return changed;
}
2015-09-09 21:49:41 +02:00
static int resolution_compare (const void *a, const void *b)
2015-09-09 21:49:41 +02:00
{
struct PicassoResolution *ma = (struct PicassoResolution *)a;
struct PicassoResolution *mb = (struct PicassoResolution *)b;
if (ma->res.width < mb->res.width)
return -1;
if (ma->res.width > mb->res.width)
return 1;
if (ma->res.height < mb->res.height)
return -1;
if (ma->res.height > mb->res.height)
return 1;
return ma->depth - mb->depth;
2015-09-09 21:49:41 +02:00
}
static void sortmodes (void)
2015-09-09 21:49:41 +02:00
{
int i = 0, idx = -1;
int pw = -1, ph = -1;
while (DisplayModes[i].depth >= 0)
i++;
qsort (DisplayModes, i, sizeof (struct PicassoResolution), resolution_compare);
for (i = 0; DisplayModes[i].depth >= 0; i++)
{
if (DisplayModes[i].res.height != ph || DisplayModes[i].res.width != pw)
{
ph = DisplayModes[i].res.height;
pw = DisplayModes[i].res.width;
idx++;
}
DisplayModes[i].residx = idx;
}
2015-09-09 21:49:41 +02:00
}
static void modesList (void)
2015-09-09 21:49:41 +02:00
{
int i, j;
i = 0;
while (DisplayModes[i].depth >= 0)
{
write_log ("%d: %s (", i, DisplayModes[i].name);
j = 0;
while (DisplayModes[i].refresh[j] > 0)
{
if (j > 0)
write_log (",");
write_log ("%d", DisplayModes[i].refresh[j]);
j++;
}
write_log (")\n");
i++;
}
2015-09-09 21:49:41 +02:00
}
void picasso_InitResolutions (void)
2015-09-09 21:49:41 +02:00
{
struct MultiDisplay *md1;
int i, count = 0;
char tmp[200];
int bit_idx;
int bits[] = { 8, 16, 32 };
Displays[0].primary = 1;
Displays[0].disabled = 0;
Displays[0].rect.left = 0;
Displays[0].rect.top = 0;
Displays[0].rect.right = 800;
2016-11-30 22:25:43 +01:00
Displays[0].rect.bottom = 480;
sprintf (tmp, "%s (%d*%d)", "Display", Displays[0].rect.right, Displays[0].rect.bottom);
Displays[0].name = my_strdup(tmp);
Displays[0].name2 = my_strdup("Display");
md1 = Displays;
DisplayModes = md1->DisplayModes = xmalloc (struct PicassoResolution, MAX_PICASSO_MODES);
for (i = 0; i < MAX_SCREEN_MODES && count < MAX_PICASSO_MODES; i++)
{
for(bit_idx = 0; bit_idx < 3; ++bit_idx)
{
int bitdepth = bits[bit_idx];
int bit_unit = (bitdepth + 1) & 0xF8;
int rgbFormat = (bitdepth == 8 ? RGBFB_CLUT : (bitdepth == 16 ? RGBFB_R5G6B5 : RGBFB_R8G8B8A8));
int pixelFormat = 1 << rgbFormat;
pixelFormat |= RGBFF_CHUNKY;
//
// if (SDL_VideoModeOK (x_size_table[i], y_size_table[i], 16, SDL_SWSURFACE))
// {
2016-10-15 20:49:53 +02:00
DisplayModes[count].res.width = x_size_table[i];
DisplayModes[count].res.height = y_size_table[i];
DisplayModes[count].depth = bit_unit >> 3;
DisplayModes[count].refresh[0] = 50;
DisplayModes[count].refresh[1] = 60;
DisplayModes[count].refresh[2] = 0;
DisplayModes[count].colormodes = pixelFormat;
sprintf(DisplayModes[count].name, "%dx%d, %d-bit",
DisplayModes[count].res.width, DisplayModes[count].res.height, DisplayModes[count].depth * 8);
count++;
// }
}
}
DisplayModes[count].depth = -1;
sortmodes();
modesList();
DisplayModes = Displays[0].DisplayModes;
2015-09-09 21:49:41 +02:00
}
2016-11-30 22:25:43 +01:00
#endif
2016-11-30 22:25:43 +01:00
#ifdef PICASSO96
void gfx_set_picasso_state (int on)
{
if (on == screen_is_picasso)
return;
screen_is_picasso = on;
open_screen(&currprefs);
2017-01-21 18:38:12 +01:00
picasso_vidinfo.rowbytes = screen->pitch;
}
2015-09-09 21:49:41 +02:00
void gfx_set_picasso_modeinfo (uae_u32 w, uae_u32 h, uae_u32 depth, RGBFTYPE rgbfmt)
{
depth >>= 3;
if( ((unsigned)picasso_vidinfo.width == w ) &&
( (unsigned)picasso_vidinfo.height == h ) &&
( (unsigned)picasso_vidinfo.depth == depth ) &&
( picasso_vidinfo.selected_rgbformat == rgbfmt) )
return;
picasso_vidinfo.selected_rgbformat = rgbfmt;
picasso_vidinfo.width = w;
picasso_vidinfo.height = h;
picasso_vidinfo.depth = 2; // Native depth
picasso_vidinfo.extra_mem = 1;
picasso_vidinfo.pixbytes = 2; // Native bytes
if (screen_is_picasso)
{
open_screen(&currprefs);
2017-01-21 18:38:12 +01:00
picasso_vidinfo.rowbytes = screen->pitch;
2016-10-15 20:49:53 +02:00
picasso_vidinfo.rgbformat = RGBFB_R5G6B5;
}
2015-09-09 21:49:41 +02:00
}
uae_u8 *gfx_lock_picasso (void)
{
2017-01-21 18:38:12 +01:00
SDL_LockSurface(screen);
picasso_vidinfo.rowbytes = screen->pitch;
return (uae_u8 *)screen->pixels;
2015-09-09 21:49:41 +02:00
}
void gfx_unlock_picasso (void)
{
2017-01-21 18:38:12 +01:00
SDL_UnlockSurface(screen);
2015-09-09 21:49:41 +02:00
}
#endif // PICASSO96