mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-27 18:20:27 +00:00
754 lines
18 KiB
C
754 lines
18 KiB
C
/* RetroArch - A frontend for libretro.
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
|
* Copyright (C) 2011-2017 - Daniel De Matteis
|
|
* Copyright (C) 2016-2019 - Brad Parker
|
|
*
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include <retro_miscellaneous.h>
|
|
#include <formats/image.h>
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "../../config.h"
|
|
#endif
|
|
|
|
#ifdef HAVE_MENU
|
|
#include "../../menu/menu_driver.h"
|
|
#endif
|
|
|
|
#include "../font_driver.h"
|
|
|
|
#include "../../driver.h"
|
|
#include "../../configuration.h"
|
|
#include "../../retroarch.h"
|
|
#include "../../verbosity.h"
|
|
#include "../../frontend/frontend_driver.h"
|
|
#include "../common/gdi_common.h"
|
|
|
|
#if defined(_WIN32) && !defined(_XBOX)
|
|
#include "../common/win32_common.h"
|
|
#endif
|
|
|
|
static HDC win32_gdi_hdc;
|
|
static void *dinput_gdi;
|
|
|
|
static void gfx_ctx_gdi_update_title(void)
|
|
{
|
|
char title[128];
|
|
const ui_window_t *window = ui_companion_driver_get_window_ptr();
|
|
|
|
title[0] = '\0';
|
|
|
|
video_driver_get_window_title(title, sizeof(title));
|
|
|
|
if (window && title[0])
|
|
window->set_title(&main_window, title);
|
|
}
|
|
|
|
static void gfx_ctx_gdi_get_video_size(
|
|
unsigned *width, unsigned *height)
|
|
{
|
|
HWND window = win32_get_window();
|
|
|
|
if (window)
|
|
{
|
|
*width = g_win32_resize_width;
|
|
*height = g_win32_resize_height;
|
|
}
|
|
else
|
|
{
|
|
RECT mon_rect;
|
|
MONITORINFOEX current_mon;
|
|
unsigned mon_id = 0;
|
|
HMONITOR hm_to_use = NULL;
|
|
|
|
win32_monitor_info(¤t_mon, &hm_to_use, &mon_id);
|
|
mon_rect = current_mon.rcMonitor;
|
|
*width = mon_rect.right - mon_rect.left;
|
|
*height = mon_rect.bottom - mon_rect.top;
|
|
}
|
|
}
|
|
|
|
static bool gfx_ctx_gdi_init(void)
|
|
{
|
|
WNDCLASSEX wndclass = {0};
|
|
|
|
if (g_win32_inited)
|
|
return true;
|
|
|
|
win32_window_reset();
|
|
win32_monitor_init();
|
|
|
|
wndclass.lpfnWndProc = WndProcGDI;
|
|
if (!win32_window_init(&wndclass, true, NULL))
|
|
return false;
|
|
return true;
|
|
}
|
|
|
|
static void gfx_ctx_gdi_destroy(void)
|
|
{
|
|
HWND window = win32_get_window();
|
|
|
|
if (window && win32_gdi_hdc)
|
|
{
|
|
ReleaseDC(window, win32_gdi_hdc);
|
|
win32_gdi_hdc = NULL;
|
|
}
|
|
|
|
if (window)
|
|
{
|
|
win32_monitor_from_window();
|
|
win32_destroy_window();
|
|
}
|
|
|
|
if (g_win32_restore_desktop)
|
|
{
|
|
win32_monitor_get_info();
|
|
g_win32_restore_desktop = false;
|
|
}
|
|
|
|
g_win32_inited = false;
|
|
}
|
|
|
|
static bool gfx_ctx_gdi_set_video_mode(
|
|
unsigned width, unsigned height,
|
|
bool fullscreen)
|
|
{
|
|
if (!win32_set_video_mode(NULL, width, height, fullscreen))
|
|
{
|
|
gfx_ctx_gdi_destroy();
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
static void gfx_ctx_gdi_input_driver(
|
|
input_driver_t **input, void **input_data)
|
|
{
|
|
settings_t *settings = config_get_ptr();
|
|
#if _WIN32_WINNT >= 0x0501
|
|
#ifdef HAVE_WINRAWINPUT
|
|
/* winraw only available since XP */
|
|
if (string_is_equal(settings->arrays.input_driver, "raw"))
|
|
{
|
|
*input_data = input_winraw.init(settings->arrays.input_driver);
|
|
if (*input_data)
|
|
{
|
|
*input = &input_winraw;
|
|
dinput_gdi = NULL;
|
|
return;
|
|
}
|
|
}
|
|
#endif
|
|
#endif
|
|
|
|
#ifdef HAVE_DINPUT
|
|
dinput_gdi = input_dinput.init(settings->arrays.input_driver);
|
|
*input = dinput_gdi ? &input_dinput : NULL;
|
|
#else
|
|
dinput_gdi = NULL;
|
|
*input = NULL;
|
|
#endif
|
|
*input_data = dinput_gdi;
|
|
}
|
|
|
|
void create_gdi_context(HWND hwnd, bool *quit)
|
|
{
|
|
win32_gdi_hdc = GetDC(hwnd);
|
|
|
|
win32_setup_pixel_format(win32_gdi_hdc, false);
|
|
|
|
g_win32_inited = true;
|
|
}
|
|
|
|
static void gdi_gfx_create(gdi_t *gdi)
|
|
{
|
|
char os[64] = {0};
|
|
|
|
frontend_ctx_driver_t *ctx = frontend_get_ptr();
|
|
|
|
if (!ctx || !ctx->get_os)
|
|
{
|
|
RARCH_ERR("[GDI] No frontend driver found.\n");
|
|
return;
|
|
}
|
|
|
|
ctx->get_os(os, sizeof(os), &gdi->win_major, &gdi->win_minor);
|
|
|
|
/* Are we running on Windows 98 or below? */
|
|
if (gdi->win_major < 4 || (gdi->win_major == 4 && gdi->win_minor <= 10))
|
|
{
|
|
RARCH_LOG("[GDI] Win98 or lower detected, using slow frame conversion method for RGB444.\n");
|
|
gdi->lte_win98 = true;
|
|
}
|
|
}
|
|
|
|
static void *gdi_gfx_init(const video_info_t *video,
|
|
input_driver_t **input, void **input_data)
|
|
{
|
|
unsigned full_x, full_y;
|
|
void *ctx_data = NULL;
|
|
const gfx_ctx_driver_t *ctx_driver = NULL;
|
|
unsigned mode_width = 0, mode_height = 0;
|
|
unsigned win_width = 0, win_height = 0;
|
|
unsigned temp_width = 0, temp_height = 0;
|
|
settings_t *settings = config_get_ptr();
|
|
bool video_font_enable = settings->bools.video_font_enable;
|
|
gdi_t *gdi = (gdi_t*)calloc(1, sizeof(*gdi));
|
|
|
|
if (!gdi)
|
|
return NULL;
|
|
|
|
*input = NULL;
|
|
*input_data = NULL;
|
|
|
|
gdi->video_width = video->width;
|
|
gdi->video_height = video->height;
|
|
gdi->rgb32 = video->rgb32;
|
|
|
|
gdi->video_bits = video->rgb32 ? 32 : 16;
|
|
|
|
if (video->rgb32)
|
|
gdi->video_pitch = video->width * 4;
|
|
else
|
|
gdi->video_pitch = video->width * 2;
|
|
|
|
gdi_gfx_create(gdi);
|
|
if (!gfx_ctx_gdi_init())
|
|
goto error;
|
|
|
|
gfx_ctx_gdi_get_video_size(&mode_width, &mode_height);
|
|
|
|
full_x = mode_width;
|
|
full_y = mode_height;
|
|
mode_width = 0;
|
|
mode_height = 0;
|
|
|
|
RARCH_LOG("[GDI]: Detecting screen resolution %ux%u.\n", full_x, full_y);
|
|
|
|
win_width = video->width;
|
|
win_height = video->height;
|
|
|
|
if (video->fullscreen && (win_width == 0) && (win_height == 0))
|
|
{
|
|
win_width = full_x;
|
|
win_height = full_y;
|
|
}
|
|
|
|
mode_width = win_width;
|
|
mode_height = win_height;
|
|
|
|
if (!gfx_ctx_gdi_set_video_mode(mode_width,
|
|
mode_height, video->fullscreen))
|
|
goto error;
|
|
|
|
mode_width = 0;
|
|
mode_height = 0;
|
|
|
|
gfx_ctx_gdi_get_video_size(&mode_width, &mode_height);
|
|
|
|
temp_width = mode_width;
|
|
temp_height = mode_height;
|
|
mode_width = 0;
|
|
mode_height = 0;
|
|
|
|
/* Get real known video size, which might have been altered by context. */
|
|
|
|
if (temp_width != 0 && temp_height != 0)
|
|
video_driver_set_size(temp_width, temp_height);
|
|
|
|
video_driver_get_size(&temp_width, &temp_height);
|
|
|
|
RARCH_LOG("[GDI]: Using resolution %ux%u\n", temp_width, temp_height);
|
|
|
|
gfx_ctx_gdi_input_driver(input, input_data);
|
|
|
|
if (video_font_enable)
|
|
font_driver_init_osd(gdi,
|
|
video,
|
|
false,
|
|
video->is_threaded,
|
|
FONT_DRIVER_RENDER_GDI);
|
|
|
|
RARCH_LOG("[GDI]: Init complete.\n");
|
|
|
|
return gdi;
|
|
|
|
error:
|
|
gfx_ctx_gdi_destroy();
|
|
if (gdi)
|
|
free(gdi);
|
|
return NULL;
|
|
}
|
|
|
|
static bool gdi_gfx_frame(void *data, const void *frame,
|
|
unsigned frame_width, unsigned frame_height, uint64_t frame_count,
|
|
unsigned pitch, const char *msg, video_frame_info_t *video_info)
|
|
{
|
|
BITMAPINFO info;
|
|
unsigned mode_width = 0;
|
|
unsigned mode_height = 0;
|
|
const void *frame_to_copy = frame;
|
|
unsigned width = 0;
|
|
unsigned height = 0;
|
|
bool draw = true;
|
|
gdi_t *gdi = (gdi_t*)data;
|
|
unsigned bits = gdi->video_bits;
|
|
HWND hwnd = win32_get_window();
|
|
bool menu_is_alive = video_info->menu_is_alive;
|
|
|
|
/* FIXME: Force these settings off as they interfere with the rendering */
|
|
video_info->xmb_shadows_enable = false;
|
|
video_info->menu_shader_pipeline = 0;
|
|
|
|
if (!frame || !frame_width || !frame_height)
|
|
return true;
|
|
|
|
#ifdef HAVE_MENU
|
|
if (gdi->menu_enable)
|
|
menu_driver_frame(menu_is_alive, video_info);
|
|
#endif
|
|
|
|
if ( gdi->video_width != frame_width ||
|
|
gdi->video_height != frame_height ||
|
|
gdi->video_pitch != pitch)
|
|
{
|
|
if (frame_width > 4 && frame_height > 4)
|
|
{
|
|
gdi->video_width = frame_width;
|
|
gdi->video_height = frame_height;
|
|
gdi->video_pitch = pitch;
|
|
}
|
|
}
|
|
|
|
if (gdi->menu_frame && video_info->menu_is_alive)
|
|
{
|
|
frame_to_copy = gdi->menu_frame;
|
|
width = gdi->menu_width;
|
|
height = gdi->menu_height;
|
|
pitch = gdi->menu_pitch;
|
|
bits = gdi->menu_bits;
|
|
}
|
|
else
|
|
{
|
|
width = gdi->video_width;
|
|
height = gdi->video_height;
|
|
pitch = gdi->video_pitch;
|
|
|
|
if ( frame_width == 4 &&
|
|
frame_height == 4 &&
|
|
(frame_width < width && frame_height < height)
|
|
)
|
|
draw = false;
|
|
|
|
if (video_info->menu_is_alive)
|
|
draw = false;
|
|
}
|
|
|
|
if (hwnd && !gdi->winDC)
|
|
{
|
|
gdi->winDC = GetDC(hwnd);
|
|
gdi->memDC = CreateCompatibleDC(gdi->winDC);
|
|
gdi->video_width = width;
|
|
gdi->video_height = height;
|
|
gdi->bmp = CreateCompatibleBitmap(
|
|
gdi->winDC, gdi->video_width, gdi->video_height);
|
|
}
|
|
|
|
gdi->bmp_old = (HBITMAP)SelectObject(gdi->memDC, gdi->bmp);
|
|
|
|
if (gdi->video_width != width || gdi->video_height != height)
|
|
{
|
|
SelectObject(gdi->memDC, gdi->bmp_old);
|
|
DeleteObject(gdi->bmp);
|
|
|
|
gdi->video_width = width;
|
|
gdi->video_height = height;
|
|
gdi->bmp = CreateCompatibleBitmap(
|
|
gdi->winDC, gdi->video_width, gdi->video_height);
|
|
gdi->bmp_old = (HBITMAP)SelectObject(gdi->memDC, gdi->bmp);
|
|
|
|
if (gdi->lte_win98)
|
|
{
|
|
unsigned short *tmp = NULL;
|
|
|
|
if (gdi->temp_buf)
|
|
free(gdi->temp_buf);
|
|
|
|
tmp = (unsigned short*)malloc(width * height
|
|
* sizeof(unsigned short));
|
|
|
|
if (tmp)
|
|
gdi->temp_buf = tmp;
|
|
}
|
|
}
|
|
|
|
gfx_ctx_gdi_get_video_size(&mode_width, &mode_height);
|
|
|
|
gdi->screen_width = mode_width;
|
|
gdi->screen_height = mode_height;
|
|
|
|
info.bmiColors[0].rgbBlue = 0;
|
|
info.bmiColors[0].rgbGreen = 0;
|
|
info.bmiColors[0].rgbRed = 0;
|
|
info.bmiColors[0].rgbReserved = 0;
|
|
|
|
info.bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
|
|
info.bmiHeader.biWidth = pitch / (bits / 8);
|
|
info.bmiHeader.biHeight = -height;
|
|
info.bmiHeader.biPlanes = 1;
|
|
info.bmiHeader.biBitCount = bits;
|
|
info.bmiHeader.biCompression = 0;
|
|
info.bmiHeader.biSizeImage = 0;
|
|
info.bmiHeader.biXPelsPerMeter= 0;
|
|
info.bmiHeader.biYPelsPerMeter= 0;
|
|
info.bmiHeader.biClrUsed = 0;
|
|
info.bmiHeader.biClrImportant = 0;
|
|
|
|
if (bits == 16)
|
|
{
|
|
if (gdi->lte_win98 && gdi->temp_buf)
|
|
{
|
|
/* Win98 and below cannot use BI_BITFIELDS with RGB444,
|
|
* so convert it to RGB555 first. */
|
|
unsigned x, y;
|
|
|
|
for (y = 0; y < height; y++)
|
|
{
|
|
for (x = 0; x < width; x++)
|
|
{
|
|
unsigned short pixel = ((unsigned short*)frame_to_copy)[width * y + x];
|
|
gdi->temp_buf[width * y + x] = (pixel & 0xF000) >> 1 | (pixel & 0x0F00) >> 2 | (pixel & 0x00F0) >> 3;
|
|
}
|
|
}
|
|
|
|
frame_to_copy = gdi->temp_buf;
|
|
info.bmiHeader.biCompression = BI_RGB;
|
|
}
|
|
else
|
|
{
|
|
unsigned *masks = (unsigned*)info.bmiColors;
|
|
|
|
info.bmiHeader.biCompression = BI_BITFIELDS;
|
|
|
|
/* default 16-bit format on Windows is XRGB1555 */
|
|
if (frame_to_copy == gdi->menu_frame)
|
|
{
|
|
/* map RGB444 color bits for RGUI */
|
|
masks[0] = 0xF000;
|
|
masks[1] = 0x0F00;
|
|
masks[2] = 0x00F0;
|
|
}
|
|
else
|
|
{
|
|
/* map RGB565 color bits for core */
|
|
masks[0] = 0xF800;
|
|
masks[1] = 0x07E0;
|
|
masks[2] = 0x001F;
|
|
}
|
|
}
|
|
}
|
|
else
|
|
info.bmiHeader.biCompression = BI_RGB;
|
|
|
|
if (draw)
|
|
StretchDIBits(gdi->memDC, 0, 0, width, height, 0, 0, width, height,
|
|
frame_to_copy, &info, DIB_RGB_COLORS, SRCCOPY);
|
|
|
|
SelectObject(gdi->memDC, gdi->bmp_old);
|
|
|
|
if (msg)
|
|
font_driver_render_msg(gdi, msg, NULL, NULL);
|
|
|
|
InvalidateRect(hwnd, NULL, false);
|
|
|
|
gfx_ctx_gdi_update_title();
|
|
|
|
return true;
|
|
}
|
|
|
|
static void gdi_gfx_set_nonblock_state(void *a, bool b, bool c, unsigned d)
|
|
{
|
|
}
|
|
|
|
static bool gdi_gfx_alive(void *data)
|
|
{
|
|
unsigned temp_width = 0;
|
|
unsigned temp_height = 0;
|
|
bool quit = false;
|
|
bool resize = false;
|
|
bool ret = false;
|
|
|
|
/* Needed because some context drivers don't track their sizes */
|
|
video_driver_get_size(&temp_width, &temp_height);
|
|
|
|
win32_check_window(NULL,
|
|
&quit, &resize, &temp_width, &temp_height);
|
|
|
|
ret = !quit;
|
|
|
|
if (temp_width != 0 && temp_height != 0)
|
|
video_driver_set_size(temp_width, temp_height);
|
|
|
|
return ret;
|
|
}
|
|
|
|
static bool gdi_gfx_focus(void *data)
|
|
{
|
|
(void)data;
|
|
return true;
|
|
}
|
|
|
|
static bool gdi_gfx_suppress_screensaver(void *data, bool enable)
|
|
{
|
|
(void)data;
|
|
(void)enable;
|
|
return false;
|
|
}
|
|
|
|
static bool gdi_gfx_has_windowed(void *data)
|
|
{
|
|
(void)data;
|
|
return true;
|
|
}
|
|
|
|
static void gdi_gfx_free(void *data)
|
|
{
|
|
gdi_t *gdi = (gdi_t*)data;
|
|
HWND hwnd = win32_get_window();
|
|
|
|
if (!gdi)
|
|
return;
|
|
|
|
if (gdi->menu_frame)
|
|
free(gdi->menu_frame);
|
|
gdi->menu_frame = NULL;
|
|
|
|
if (gdi->temp_buf)
|
|
free(gdi->temp_buf);
|
|
gdi->temp_buf = NULL;
|
|
|
|
if (gdi->bmp)
|
|
DeleteObject(gdi->bmp);
|
|
|
|
if (gdi->texDC)
|
|
{
|
|
DeleteDC(gdi->texDC);
|
|
gdi->texDC = 0;
|
|
}
|
|
if (gdi->memDC)
|
|
{
|
|
DeleteDC(gdi->memDC);
|
|
gdi->memDC = 0;
|
|
}
|
|
|
|
if (hwnd && gdi->winDC)
|
|
{
|
|
ReleaseDC(hwnd, gdi->winDC);
|
|
gdi->winDC = 0;
|
|
}
|
|
|
|
font_driver_free_osd();
|
|
gfx_ctx_gdi_destroy();
|
|
free(gdi);
|
|
}
|
|
|
|
static bool gdi_gfx_set_shader(void *data,
|
|
enum rarch_shader_type type, const char *path)
|
|
{
|
|
(void)data;
|
|
(void)type;
|
|
(void)path;
|
|
|
|
return false;
|
|
}
|
|
|
|
static void gdi_set_texture_enable(
|
|
void *data, bool state, bool full_screen)
|
|
{
|
|
gdi_t *gdi = (gdi_t*)data;
|
|
if (!gdi)
|
|
return;
|
|
|
|
gdi->menu_enable = state;
|
|
gdi->menu_full_screen = full_screen;
|
|
}
|
|
|
|
static void gdi_set_texture_frame(void *data,
|
|
const void *frame, bool rgb32, unsigned width, unsigned height,
|
|
float alpha)
|
|
{
|
|
gdi_t *gdi = (gdi_t*)data;
|
|
unsigned pitch = width * 2;
|
|
|
|
if (rgb32)
|
|
pitch = width * 4;
|
|
|
|
if (gdi->menu_frame)
|
|
free(gdi->menu_frame);
|
|
gdi->menu_frame = NULL;
|
|
|
|
if ( !gdi->menu_frame ||
|
|
gdi->menu_width != width ||
|
|
gdi->menu_height != height ||
|
|
gdi->menu_pitch != pitch)
|
|
{
|
|
if (pitch && height)
|
|
{
|
|
unsigned char *tmp = (unsigned char*)malloc(pitch * height);
|
|
|
|
if (tmp)
|
|
gdi->menu_frame = tmp;
|
|
}
|
|
}
|
|
|
|
if (gdi->menu_frame && frame && pitch && height)
|
|
{
|
|
memcpy(gdi->menu_frame, frame, pitch * height);
|
|
gdi->menu_width = width;
|
|
gdi->menu_height = height;
|
|
gdi->menu_pitch = pitch;
|
|
gdi->menu_bits = rgb32 ? 32 : 16;
|
|
}
|
|
}
|
|
|
|
static void gdi_set_video_mode(void *data, unsigned width, unsigned height,
|
|
bool fullscreen)
|
|
{
|
|
gfx_ctx_gdi_set_video_mode(width, height, fullscreen);
|
|
}
|
|
|
|
static uintptr_t gdi_load_texture(void *video_data, void *data,
|
|
bool threaded, enum texture_filter_type filter_type)
|
|
{
|
|
void *tmpdata = NULL;
|
|
gdi_texture_t *texture = NULL;
|
|
struct texture_image *image = (struct texture_image*)data;
|
|
|
|
if (!image || image->width > 2048 || image->height > 2048)
|
|
return 0;
|
|
|
|
texture = (gdi_texture_t*)calloc(1, sizeof(*texture));
|
|
|
|
if (!texture)
|
|
return 0;
|
|
|
|
texture->width = image->width;
|
|
texture->height = image->height;
|
|
texture->active_width = image->width;
|
|
texture->active_height = image->height;
|
|
texture->data = calloc(1,
|
|
texture->width * texture->height * sizeof(uint32_t));
|
|
texture->type = filter_type;
|
|
|
|
if (!texture->data)
|
|
{
|
|
free(texture);
|
|
return 0;
|
|
}
|
|
|
|
memcpy(texture->data, image->pixels,
|
|
texture->width * texture->height * sizeof(uint32_t));
|
|
|
|
return (uintptr_t)texture;
|
|
}
|
|
|
|
static void gdi_unload_texture(void *data, uintptr_t handle)
|
|
{
|
|
struct gdi_texture *texture = (struct gdi_texture*)handle;
|
|
|
|
if (!texture)
|
|
return;
|
|
|
|
if (texture->data)
|
|
free(texture->data);
|
|
|
|
if (texture->bmp)
|
|
{
|
|
DeleteObject(texture->bmp);
|
|
texture->bmp = NULL;
|
|
}
|
|
|
|
free(texture);
|
|
}
|
|
|
|
static uint32_t gdi_get_flags(void *data)
|
|
{
|
|
uint32_t flags = 0;
|
|
|
|
return flags;
|
|
}
|
|
|
|
static const video_poke_interface_t gdi_poke_interface = {
|
|
gdi_get_flags,
|
|
gdi_load_texture,
|
|
gdi_unload_texture,
|
|
gdi_set_video_mode,
|
|
win32_get_refresh_rate,
|
|
NULL,
|
|
NULL, /* get_video_output_size */
|
|
NULL, /* get_video_output_prev */
|
|
NULL, /* get_video_output_next */
|
|
NULL,
|
|
NULL,
|
|
NULL,
|
|
NULL,
|
|
gdi_set_texture_frame,
|
|
gdi_set_texture_enable,
|
|
font_driver_render_msg,
|
|
NULL,
|
|
NULL, /* grab_mouse_toggle */
|
|
NULL, /* get_current_shader */
|
|
NULL, /* get_current_software_framebuffer */
|
|
NULL /* get_hw_render_interface */
|
|
};
|
|
|
|
static void gdi_gfx_get_poke_interface(void *data,
|
|
const video_poke_interface_t **iface)
|
|
{
|
|
(void)data;
|
|
*iface = &gdi_poke_interface;
|
|
}
|
|
|
|
static void gdi_gfx_set_viewport(void *data, unsigned viewport_width,
|
|
unsigned viewport_height, bool force_full, bool allow_rotate)
|
|
{
|
|
}
|
|
|
|
video_driver_t video_gdi = {
|
|
gdi_gfx_init,
|
|
gdi_gfx_frame,
|
|
gdi_gfx_set_nonblock_state,
|
|
gdi_gfx_alive,
|
|
gdi_gfx_focus,
|
|
gdi_gfx_suppress_screensaver,
|
|
gdi_gfx_has_windowed,
|
|
gdi_gfx_set_shader,
|
|
gdi_gfx_free,
|
|
"gdi",
|
|
gdi_gfx_set_viewport,
|
|
NULL, /* set_rotation */
|
|
NULL, /* viewport_info */
|
|
NULL, /* read_viewport */
|
|
NULL, /* read_frame_raw */
|
|
|
|
#ifdef HAVE_OVERLAY
|
|
NULL, /* overlay_interface */
|
|
#endif
|
|
#ifdef HAVE_VIDEO_LAYOUT
|
|
NULL,
|
|
#endif
|
|
gdi_gfx_get_poke_interface,
|
|
};
|