2013-12-31 22:19:51 +00:00
|
|
|
/* RetroArch - A frontend for libretro.
|
2014-01-01 00:50:59 +00:00
|
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
|
|
|
* Copyright (C) 2011-2014 - Daniel De Matteis
|
|
|
|
* Copyright (C) 2012-2014 - OV2
|
2013-12-31 22:19:51 +00:00
|
|
|
*
|
|
|
|
* 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 "d3d9.hpp"
|
|
|
|
#include "render_chain.hpp"
|
|
|
|
#include "../../file.h"
|
|
|
|
#include "../context/win32_common.h"
|
|
|
|
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
#ifndef _XBOX
|
|
|
|
#pragma comment( lib, "d3d9" )
|
|
|
|
#pragma comment( lib, "d3dx9" )
|
|
|
|
#pragma comment( lib, "cgd3d9" )
|
|
|
|
#pragma comment( lib, "dxguid" )
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2014-01-18 19:49:57 +00:00
|
|
|
static D3DVideo *curD3D = NULL;
|
|
|
|
static bool d3d_quit = false;
|
|
|
|
static void *dinput;
|
|
|
|
|
|
|
|
extern bool d3d_restore(void *data);
|
|
|
|
|
2014-01-18 20:13:08 +00:00
|
|
|
static void d3d_resize(unsigned new_width, unsigned new_height)
|
2014-01-18 19:49:57 +00:00
|
|
|
{
|
2014-01-18 20:13:08 +00:00
|
|
|
D3DVideo *d3d = reinterpret_cast<D3DVideo*>(curD3D);
|
2014-03-05 04:25:27 +00:00
|
|
|
LPDIRECT3DDEVICE d3dr = d3d->dev;
|
|
|
|
if (!d3dr)
|
2014-01-18 19:49:57 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
RARCH_LOG("[D3D]: Resize %ux%u.\n", new_width, new_height);
|
|
|
|
|
|
|
|
if (new_width != d3d->video_info.width || new_height != d3d->video_info.height)
|
|
|
|
{
|
|
|
|
d3d->video_info.width = d3d->screen_width = new_width;
|
|
|
|
d3d->video_info.height = d3d->screen_height = new_height;
|
|
|
|
d3d_restore(d3d);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef HAVE_WINDOW
|
|
|
|
LRESULT CALLBACK WindowProc(HWND hWnd, UINT message,
|
|
|
|
WPARAM wParam, LPARAM lParam)
|
|
|
|
{
|
|
|
|
switch (message)
|
|
|
|
{
|
|
|
|
case WM_CREATE:
|
|
|
|
LPCREATESTRUCT p_cs;
|
|
|
|
p_cs = (LPCREATESTRUCT)lParam;
|
|
|
|
curD3D = (D3DVideo*)p_cs->lpCreateParams;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WM_CHAR:
|
|
|
|
case WM_KEYDOWN:
|
|
|
|
case WM_KEYUP:
|
|
|
|
case WM_SYSKEYUP:
|
|
|
|
case WM_SYSKEYDOWN:
|
|
|
|
return win32_handle_keyboard_event(hWnd, message, wParam, lParam);
|
|
|
|
|
|
|
|
case WM_DESTROY:
|
|
|
|
d3d_quit = true;
|
|
|
|
return 0;
|
|
|
|
case WM_SIZE:
|
|
|
|
unsigned new_width, new_height;
|
|
|
|
new_width = LOWORD(lParam);
|
|
|
|
new_height = HIWORD(lParam);
|
|
|
|
|
|
|
|
if (new_width && new_height)
|
2014-01-18 20:13:08 +00:00
|
|
|
d3d_resize(new_width, new_height);
|
2014-01-18 19:49:57 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (dinput_handle_message(dinput, message, wParam, lParam))
|
|
|
|
return 0;
|
|
|
|
return DefWindowProc(hWnd, message, wParam, lParam);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-01-09 18:05:31 +00:00
|
|
|
bool d3d_process_shader(void *data)
|
2013-12-31 22:19:51 +00:00
|
|
|
{
|
2014-01-09 18:05:31 +00:00
|
|
|
D3DVideo *d3d = reinterpret_cast<D3DVideo*>(data);
|
2014-03-04 17:49:01 +00:00
|
|
|
#ifdef HAVE_FBO
|
2014-01-09 18:05:31 +00:00
|
|
|
if (strcmp(path_get_extension(d3d->cg_shader.c_str()), "cgp") == 0)
|
2014-01-09 18:43:45 +00:00
|
|
|
return d3d_init_multipass(d3d);
|
2014-03-04 17:49:01 +00:00
|
|
|
#endif
|
2014-01-09 18:05:31 +00:00
|
|
|
|
2014-01-09 18:43:45 +00:00
|
|
|
return d3d_init_singlepass(d3d);
|
2014-01-09 18:05:31 +00:00
|
|
|
}
|
|
|
|
|
2014-01-18 17:43:07 +00:00
|
|
|
static void gfx_ctx_d3d_swap_buffers(void)
|
2014-01-09 18:05:31 +00:00
|
|
|
{
|
2014-01-18 17:43:07 +00:00
|
|
|
D3DVideo *d3d = reinterpret_cast<D3DVideo*>(driver.video_data);
|
2014-03-05 04:25:27 +00:00
|
|
|
LPDIRECT3DDEVICE d3dr = d3d->dev;
|
|
|
|
if (d3dr->Present(NULL, NULL, NULL, NULL) != D3D_OK)
|
2014-01-18 17:43:07 +00:00
|
|
|
{
|
|
|
|
d3d->needs_restore = true;
|
|
|
|
RARCH_ERR("[D3D]: Present() failed.\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void gfx_ctx_d3d_update_title(void)
|
|
|
|
{
|
|
|
|
D3DVideo *d3d = reinterpret_cast<D3DVideo*>(driver.video_data);
|
2014-01-09 18:05:31 +00:00
|
|
|
char buffer[128], buffer_fps[128];
|
|
|
|
bool fps_draw = g_settings.fps_show;
|
|
|
|
if (gfx_get_fps(buffer, sizeof(buffer), fps_draw ? buffer_fps : NULL, sizeof(buffer_fps)))
|
|
|
|
{
|
|
|
|
std::string title = buffer;
|
|
|
|
title += " || Direct3D9";
|
|
|
|
SetWindowText(d3d->hWnd, title.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fps_draw)
|
|
|
|
msg_queue_push(g_extern.msg_queue, buffer_fps, 1, 1);
|
|
|
|
|
|
|
|
g_extern.frame_count++;
|
|
|
|
}
|
|
|
|
|
|
|
|
void d3d_set_font_rect(void *data, font_params_t *params)
|
|
|
|
{
|
|
|
|
D3DVideo *d3d = reinterpret_cast<D3DVideo*>(data);
|
2013-12-31 22:19:51 +00:00
|
|
|
float pos_x = g_settings.video.msg_pos_x;
|
|
|
|
float pos_y = g_settings.video.msg_pos_y;
|
|
|
|
float font_size = g_settings.video.font_size;
|
|
|
|
|
|
|
|
if (params)
|
|
|
|
{
|
|
|
|
pos_x = params->x;
|
|
|
|
pos_y = params->y;
|
|
|
|
font_size *= params->scale;
|
|
|
|
}
|
|
|
|
|
2014-01-09 18:05:31 +00:00
|
|
|
d3d->font_rect.left = d3d->final_viewport.X + d3d->final_viewport.Width * pos_x;
|
|
|
|
d3d->font_rect.right = d3d->final_viewport.X + d3d->final_viewport.Width;
|
|
|
|
d3d->font_rect.top = d3d->final_viewport.Y + (1.0f - pos_y) * d3d->final_viewport.Height - font_size;
|
|
|
|
d3d->font_rect.bottom = d3d->final_viewport.Height;
|
|
|
|
|
|
|
|
d3d->font_rect_shifted = d3d->font_rect;
|
|
|
|
d3d->font_rect_shifted.left -= 2;
|
|
|
|
d3d->font_rect_shifted.right -= 2;
|
|
|
|
d3d->font_rect_shifted.top += 2;
|
|
|
|
d3d->font_rect_shifted.bottom += 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
void d3d_recompute_pass_sizes(void *data)
|
|
|
|
{
|
|
|
|
D3DVideo *d3d = reinterpret_cast<D3DVideo*>(data);
|
|
|
|
LinkInfo link_info = {0};
|
|
|
|
link_info.pass = &d3d->shader.pass[0];
|
|
|
|
link_info.tex_w = link_info.tex_h = d3d->video_info.input_scale * RARCH_SCALE_BASE;
|
|
|
|
|
|
|
|
unsigned current_width = link_info.tex_w;
|
|
|
|
unsigned current_height = link_info.tex_h;
|
|
|
|
unsigned out_width = 0;
|
|
|
|
unsigned out_height = 0;
|
|
|
|
|
|
|
|
if (!d3d->chain->set_pass_size(0, current_width, current_height))
|
|
|
|
{
|
|
|
|
RARCH_ERR("[D3D]: Failed to set pass size.\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (unsigned i = 1; i < d3d->shader.passes; i++)
|
|
|
|
{
|
|
|
|
RenderChain::convert_geometry(link_info,
|
|
|
|
out_width, out_height,
|
|
|
|
current_width, current_height, d3d->final_viewport);
|
|
|
|
|
|
|
|
link_info.tex_w = next_pow2(out_width);
|
|
|
|
link_info.tex_h = next_pow2(out_height);
|
|
|
|
|
|
|
|
if (!d3d->chain->set_pass_size(i, link_info.tex_w, link_info.tex_h))
|
|
|
|
{
|
|
|
|
RARCH_ERR("[D3D]: Failed to set pass size.\n");
|
|
|
|
return;
|
|
|
|
}
|
2013-12-31 22:19:51 +00:00
|
|
|
|
2014-01-09 18:05:31 +00:00
|
|
|
current_width = out_width;
|
|
|
|
current_height = out_height;
|
|
|
|
|
|
|
|
link_info.pass = &d3d->shader.pass[i];
|
|
|
|
}
|
2013-12-31 22:19:51 +00:00
|
|
|
}
|
|
|
|
|
2014-01-09 18:43:45 +00:00
|
|
|
bool d3d_init_singlepass(void *data)
|
2013-12-31 22:19:51 +00:00
|
|
|
{
|
2014-01-09 18:43:45 +00:00
|
|
|
D3DVideo *d3d = reinterpret_cast<D3DVideo*>(data);
|
|
|
|
memset(&d3d->shader, 0, sizeof(d3d->shader));
|
|
|
|
d3d->shader.passes = 1;
|
|
|
|
gfx_shader_pass &pass = d3d->shader.pass[0];
|
2013-12-31 22:19:51 +00:00
|
|
|
pass.fbo.valid = true;
|
|
|
|
pass.fbo.scale_x = pass.fbo.scale_y = 1.0;
|
|
|
|
pass.fbo.type_x = pass.fbo.type_y = RARCH_SCALE_VIEWPORT;
|
2014-01-09 18:43:45 +00:00
|
|
|
strlcpy(pass.source.cg, d3d->cg_shader.c_str(), sizeof(pass.source.cg));
|
2013-12-31 23:00:01 +00:00
|
|
|
|
2014-01-01 15:51:40 +00:00
|
|
|
return true;
|
2013-12-31 22:19:51 +00:00
|
|
|
}
|
|
|
|
|
2014-01-09 18:43:45 +00:00
|
|
|
bool d3d_init_imports(void *data)
|
2013-12-31 22:19:51 +00:00
|
|
|
{
|
2014-01-09 18:43:45 +00:00
|
|
|
D3DVideo *d3d = reinterpret_cast<D3DVideo*>(data);
|
|
|
|
if (!d3d->shader.variables)
|
2014-01-01 15:51:40 +00:00
|
|
|
return true;
|
2013-12-31 22:19:51 +00:00
|
|
|
|
|
|
|
state_tracker_info tracker_info = {0};
|
|
|
|
|
|
|
|
tracker_info.wram = (uint8_t*)pretro_get_memory_data(RETRO_MEMORY_SYSTEM_RAM);
|
2014-01-09 18:43:45 +00:00
|
|
|
tracker_info.info = d3d->shader.variable;
|
|
|
|
tracker_info.info_elem = d3d->shader.variables;
|
2013-12-31 22:19:51 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_PYTHON
|
2014-01-11 14:47:11 +00:00
|
|
|
if (*d3d->shader.script_path)
|
2013-12-31 22:19:51 +00:00
|
|
|
{
|
2014-01-09 18:43:45 +00:00
|
|
|
tracker_info.script = d3d->shader.script_path;
|
2013-12-31 22:19:51 +00:00
|
|
|
tracker_info.script_is_file = true;
|
|
|
|
}
|
|
|
|
|
2014-01-09 18:43:45 +00:00
|
|
|
tracker_info.script_class = *d3d->shader.script_class ? d3d->shader.script_class : NULL;
|
2013-12-31 22:19:51 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
state_tracker_t *state_tracker = state_tracker_init(&tracker_info);
|
|
|
|
if (!state_tracker)
|
2013-12-31 23:00:01 +00:00
|
|
|
{
|
|
|
|
RARCH_ERR("Failed to initialize state tracker.\n");
|
2014-01-01 15:51:40 +00:00
|
|
|
return false;
|
2013-12-31 23:00:01 +00:00
|
|
|
}
|
2013-12-31 22:19:51 +00:00
|
|
|
|
2014-01-09 18:43:45 +00:00
|
|
|
d3d->chain->add_state_tracker(state_tracker);
|
2014-01-01 15:51:40 +00:00
|
|
|
return true;
|
2013-12-31 22:19:51 +00:00
|
|
|
}
|
|
|
|
|
2014-01-09 18:43:45 +00:00
|
|
|
bool d3d_init_luts(void *data)
|
2013-12-31 22:19:51 +00:00
|
|
|
{
|
2014-01-09 18:43:45 +00:00
|
|
|
D3DVideo *d3d = reinterpret_cast<D3DVideo*>(data);
|
|
|
|
for (unsigned i = 0; i < d3d->shader.luts; i++)
|
2013-12-31 22:19:51 +00:00
|
|
|
{
|
2014-01-09 18:43:45 +00:00
|
|
|
bool ret = d3d->chain->add_lut(d3d->shader.lut[i].id, d3d->shader.lut[i].path,
|
|
|
|
d3d->shader.lut[i].filter == RARCH_FILTER_UNSPEC ?
|
2013-12-31 22:19:51 +00:00
|
|
|
g_settings.video.smooth :
|
2014-01-09 18:43:45 +00:00
|
|
|
(d3d->shader.lut[i].filter == RARCH_FILTER_LINEAR));
|
2014-01-01 15:51:40 +00:00
|
|
|
|
|
|
|
if (!ret)
|
|
|
|
return ret;
|
2013-12-31 22:19:51 +00:00
|
|
|
}
|
2014-01-01 15:51:40 +00:00
|
|
|
|
|
|
|
return true;
|
2013-12-31 22:19:51 +00:00
|
|
|
}
|
|
|
|
|
2014-03-04 17:49:01 +00:00
|
|
|
#ifdef HAVE_FBO
|
2014-01-09 18:43:45 +00:00
|
|
|
bool d3d_init_multipass(void *data)
|
2013-12-31 22:19:51 +00:00
|
|
|
{
|
2014-01-09 18:43:45 +00:00
|
|
|
D3DVideo *d3d = reinterpret_cast<D3DVideo*>(data);
|
|
|
|
config_file_t *conf = config_file_new(d3d->cg_shader.c_str());
|
2013-12-31 22:19:51 +00:00
|
|
|
if (!conf)
|
2013-12-31 23:00:01 +00:00
|
|
|
{
|
|
|
|
RARCH_ERR("Failed to load preset.\n");
|
2014-01-01 15:51:40 +00:00
|
|
|
return false;
|
2013-12-31 23:00:01 +00:00
|
|
|
}
|
2013-12-31 22:19:51 +00:00
|
|
|
|
2014-01-09 18:43:45 +00:00
|
|
|
memset(&d3d->shader, 0, sizeof(d3d->shader));
|
2013-12-31 22:19:51 +00:00
|
|
|
|
2014-01-09 18:43:45 +00:00
|
|
|
if (!gfx_shader_read_conf_cgp(conf, &d3d->shader))
|
2013-12-31 22:19:51 +00:00
|
|
|
{
|
|
|
|
config_file_free(conf);
|
2013-12-31 23:00:01 +00:00
|
|
|
RARCH_ERR("Failed to parse CGP file.\n");
|
2014-01-01 15:51:40 +00:00
|
|
|
return false;
|
2013-12-31 22:19:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
config_file_free(conf);
|
|
|
|
|
2014-01-09 18:43:45 +00:00
|
|
|
gfx_shader_resolve_relative(&d3d->shader, d3d->cg_shader.c_str());
|
2013-12-31 22:19:51 +00:00
|
|
|
|
2014-01-09 18:43:45 +00:00
|
|
|
RARCH_LOG("[D3D9 Meta-Cg] Found %d shaders.\n", d3d->shader.passes);
|
2013-12-31 22:19:51 +00:00
|
|
|
|
2014-01-09 18:43:45 +00:00
|
|
|
for (unsigned i = 0; i < d3d->shader.passes; i++)
|
2013-12-31 22:19:51 +00:00
|
|
|
{
|
2014-01-09 18:43:45 +00:00
|
|
|
if (!d3d->shader.pass[i].fbo.valid)
|
2013-12-31 22:19:51 +00:00
|
|
|
{
|
2014-01-09 18:43:45 +00:00
|
|
|
d3d->shader.pass[i].fbo.scale_x = d3d->shader.pass[i].fbo.scale_y = 1.0f;
|
|
|
|
d3d->shader.pass[i].fbo.type_x = d3d->shader.pass[i].fbo.type_y = RARCH_SCALE_INPUT;
|
2013-12-31 22:19:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-09 18:43:45 +00:00
|
|
|
bool use_extra_pass = d3d->shader.passes < GFX_MAX_SHADERS && d3d->shader.pass[d3d->shader.passes - 1].fbo.valid;
|
2013-12-31 22:19:51 +00:00
|
|
|
if (use_extra_pass)
|
|
|
|
{
|
2014-01-09 18:43:45 +00:00
|
|
|
d3d->shader.passes++;
|
|
|
|
gfx_shader_pass &dummy_pass = d3d->shader.pass[d3d->shader.passes - 1];
|
2013-12-31 22:19:51 +00:00
|
|
|
dummy_pass.fbo.scale_x = dummy_pass.fbo.scale_y = 1.0f;
|
|
|
|
dummy_pass.fbo.type_x = dummy_pass.fbo.type_y = RARCH_SCALE_VIEWPORT;
|
|
|
|
dummy_pass.filter = RARCH_FILTER_UNSPEC;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-01-09 18:43:45 +00:00
|
|
|
gfx_shader_pass &pass = d3d->shader.pass[d3d->shader.passes - 1];
|
2013-12-31 22:19:51 +00:00
|
|
|
pass.fbo.scale_x = pass.fbo.scale_y = 1.0f;
|
|
|
|
pass.fbo.type_x = pass.fbo.type_y = RARCH_SCALE_VIEWPORT;
|
|
|
|
}
|
2013-12-31 23:00:01 +00:00
|
|
|
|
2014-01-01 15:51:40 +00:00
|
|
|
return true;
|
2013-12-31 22:19:51 +00:00
|
|
|
}
|
2014-01-09 20:27:53 +00:00
|
|
|
#endif
|
2013-12-31 22:19:51 +00:00
|
|
|
|
2014-01-09 18:43:45 +00:00
|
|
|
bool d3d_init_chain(void *data, const video_info_t *video_info)
|
2013-12-31 22:19:51 +00:00
|
|
|
{
|
2014-01-09 18:43:45 +00:00
|
|
|
D3DVideo *d3d = reinterpret_cast<D3DVideo*>(data);
|
2014-03-05 04:25:27 +00:00
|
|
|
LPDIRECT3DDEVICE d3dr = d3d->dev;
|
2013-12-31 23:00:01 +00:00
|
|
|
// Setup information for first pass.
|
|
|
|
LinkInfo link_info = {0};
|
|
|
|
|
2014-01-09 18:43:45 +00:00
|
|
|
link_info.pass = &d3d->shader.pass[0];
|
2013-12-31 23:00:01 +00:00
|
|
|
link_info.tex_w = link_info.tex_h = video_info->input_scale * RARCH_SCALE_BASE;
|
|
|
|
|
2014-01-09 18:43:45 +00:00
|
|
|
delete d3d->chain;
|
|
|
|
d3d->chain = new RenderChain(
|
|
|
|
&d3d->video_info,
|
2014-03-05 04:25:27 +00:00
|
|
|
d3dr, d3d->cgCtx,
|
2014-01-09 18:43:45 +00:00
|
|
|
d3d->final_viewport);
|
2014-01-01 15:51:40 +00:00
|
|
|
|
2014-01-09 18:43:45 +00:00
|
|
|
if (!d3d->chain->init(link_info,
|
|
|
|
d3d->video_info.rgb32 ? RenderChain::ARGB : RenderChain::RGB565))
|
2014-01-01 15:51:40 +00:00
|
|
|
{
|
|
|
|
RARCH_ERR("[D3D9]: Failed to init render chain.\n");
|
|
|
|
return false;
|
|
|
|
}
|
2013-12-31 23:00:01 +00:00
|
|
|
|
|
|
|
unsigned current_width = link_info.tex_w;
|
|
|
|
unsigned current_height = link_info.tex_h;
|
|
|
|
unsigned out_width = 0;
|
|
|
|
unsigned out_height = 0;
|
|
|
|
|
2014-01-09 18:43:45 +00:00
|
|
|
for (unsigned i = 1; i < d3d->shader.passes; i++)
|
2013-12-31 22:19:51 +00:00
|
|
|
{
|
2013-12-31 23:00:01 +00:00
|
|
|
RenderChain::convert_geometry(link_info,
|
|
|
|
out_width, out_height,
|
2014-01-09 18:43:45 +00:00
|
|
|
current_width, current_height, d3d->final_viewport);
|
2013-12-31 22:19:51 +00:00
|
|
|
|
2014-01-09 18:43:45 +00:00
|
|
|
link_info.pass = &d3d->shader.pass[i];
|
2013-12-31 23:00:01 +00:00
|
|
|
link_info.tex_w = next_pow2(out_width);
|
|
|
|
link_info.tex_h = next_pow2(out_height);
|
2013-12-31 22:19:51 +00:00
|
|
|
|
2013-12-31 23:00:01 +00:00
|
|
|
current_width = out_width;
|
|
|
|
current_height = out_height;
|
2013-12-31 22:19:51 +00:00
|
|
|
|
2014-01-09 18:43:45 +00:00
|
|
|
if (!d3d->chain->add_pass(link_info))
|
2014-01-01 15:51:40 +00:00
|
|
|
{
|
|
|
|
RARCH_ERR("[D3D9]: Failed to add pass.\n");
|
|
|
|
return false;
|
|
|
|
}
|
2013-12-31 23:00:01 +00:00
|
|
|
}
|
2013-12-31 22:19:51 +00:00
|
|
|
|
2014-01-09 18:43:45 +00:00
|
|
|
if (!d3d_init_luts(d3d))
|
2014-01-01 15:51:40 +00:00
|
|
|
{
|
|
|
|
RARCH_ERR("[D3D9]: Failed to init LUTs.\n");
|
|
|
|
return false;
|
|
|
|
}
|
2013-12-31 22:19:51 +00:00
|
|
|
|
2014-01-09 18:43:45 +00:00
|
|
|
if (!d3d_init_imports(d3d))
|
2013-12-31 22:19:51 +00:00
|
|
|
{
|
2014-01-01 15:51:40 +00:00
|
|
|
RARCH_ERR("[D3D9]: Failed to init imports.\n");
|
2013-12-31 22:19:51 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-01-09 18:43:45 +00:00
|
|
|
void d3d_deinit_chain(void *data)
|
2013-12-31 22:19:51 +00:00
|
|
|
{
|
2014-01-09 18:43:45 +00:00
|
|
|
D3DVideo *d3d = reinterpret_cast<D3DVideo*>(data);
|
|
|
|
delete d3d->chain;
|
|
|
|
d3d->chain = NULL;
|
2013-12-31 22:19:51 +00:00
|
|
|
}
|
|
|
|
|
2014-01-18 17:43:07 +00:00
|
|
|
static void gfx_ctx_d3d_show_mouse(bool state)
|
2014-01-09 20:27:53 +00:00
|
|
|
{
|
|
|
|
#ifdef HAVE_WINDOW
|
|
|
|
if (state)
|
|
|
|
while (ShowCursor(TRUE) < 0);
|
|
|
|
else
|
|
|
|
while (ShowCursor(FALSE) >= 0);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void d3d_make_d3dpp(void *data, const video_info_t *info, D3DPRESENT_PARAMETERS *d3dpp)
|
|
|
|
{
|
|
|
|
D3DVideo *d3d = reinterpret_cast<D3DVideo*>(data);
|
|
|
|
memset(d3dpp, 0, sizeof(*d3dpp));
|
|
|
|
|
|
|
|
d3dpp->Windowed = g_settings.video.windowed_fullscreen || !info->fullscreen;
|
|
|
|
|
|
|
|
if (info->vsync)
|
|
|
|
{
|
|
|
|
switch (g_settings.video.swap_interval)
|
|
|
|
{
|
|
|
|
default:
|
|
|
|
case 1: d3dpp->PresentationInterval = D3DPRESENT_INTERVAL_ONE; break;
|
|
|
|
case 2: d3dpp->PresentationInterval = D3DPRESENT_INTERVAL_TWO; break;
|
|
|
|
case 3: d3dpp->PresentationInterval = D3DPRESENT_INTERVAL_THREE; break;
|
|
|
|
case 4: d3dpp->PresentationInterval = D3DPRESENT_INTERVAL_FOUR; break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
d3dpp->PresentationInterval = D3DPRESENT_INTERVAL_IMMEDIATE;
|
|
|
|
|
|
|
|
d3dpp->SwapEffect = D3DSWAPEFFECT_DISCARD;
|
|
|
|
d3dpp->hDeviceWindow = d3d->hWnd;
|
|
|
|
d3dpp->BackBufferCount = 2;
|
|
|
|
d3dpp->BackBufferFormat = !d3dpp->Windowed ? D3DFMT_X8R8G8B8 : D3DFMT_UNKNOWN;
|
|
|
|
|
|
|
|
if (!d3dpp->Windowed)
|
|
|
|
{
|
|
|
|
d3dpp->BackBufferWidth = d3d->screen_width;
|
|
|
|
d3dpp->BackBufferHeight = d3d->screen_height;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-18 17:43:07 +00:00
|
|
|
static void gfx_ctx_d3d_check_window(bool *quit,
|
|
|
|
bool *resize, unsigned *width, unsigned *height, unsigned frame_count)
|
2014-01-09 20:27:53 +00:00
|
|
|
{
|
2014-01-18 17:43:07 +00:00
|
|
|
D3DVideo *d3d = reinterpret_cast<D3DVideo*>(driver.video_data);
|
|
|
|
*quit = false;
|
|
|
|
*resize = false;
|
2014-01-18 20:07:34 +00:00
|
|
|
|
|
|
|
if (d3d_quit)
|
|
|
|
*quit = true;
|
2014-01-15 13:14:37 +00:00
|
|
|
#ifndef _XBOX
|
2014-01-09 20:27:53 +00:00
|
|
|
MSG msg;
|
|
|
|
|
|
|
|
while (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE))
|
|
|
|
{
|
|
|
|
TranslateMessage(&msg);
|
|
|
|
DispatchMessage(&msg);
|
|
|
|
}
|
2014-01-15 13:14:37 +00:00
|
|
|
#endif
|
2014-01-18 17:43:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static bool gfx_ctx_d3d_has_focus(void)
|
|
|
|
{
|
|
|
|
#ifdef _XBOX
|
|
|
|
return true;
|
|
|
|
#else
|
|
|
|
D3DVideo *d3d = reinterpret_cast<D3DVideo*>(driver.video_data);
|
|
|
|
return GetFocus() == d3d->hWnd;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool gfx_ctx_d3d_bind_api(enum gfx_ctx_api api, unsigned major, unsigned minor)
|
|
|
|
{
|
|
|
|
(void)major;
|
|
|
|
(void)minor;
|
|
|
|
(void)api;
|
|
|
|
#if defined(_XBOX1)
|
|
|
|
return api == GFX_CTX_DIRECT3D8_API;
|
|
|
|
#else
|
|
|
|
return api == GFX_CTX_DIRECT3D9_API;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool gfx_ctx_d3d_init(void)
|
|
|
|
{
|
2014-01-09 21:25:50 +00:00
|
|
|
return true;
|
2014-01-15 16:24:24 +00:00
|
|
|
}
|
2014-01-18 17:43:07 +00:00
|
|
|
|
2014-01-18 19:49:57 +00:00
|
|
|
static void gfx_ctx_d3d_input_driver(const input_driver_t **input, void **input_data)
|
|
|
|
{
|
|
|
|
dinput = input_dinput.init();
|
|
|
|
*input = dinput ? &input_dinput : NULL;
|
|
|
|
*input_data = dinput;
|
|
|
|
}
|
|
|
|
|
2014-01-18 17:43:07 +00:00
|
|
|
const gfx_ctx_driver_t gfx_ctx_d3d9 = {
|
2014-01-18 19:49:57 +00:00
|
|
|
gfx_ctx_d3d_init,
|
2014-01-18 17:43:07 +00:00
|
|
|
NULL, // gfx_ctx_destroy
|
2014-01-18 19:49:57 +00:00
|
|
|
gfx_ctx_d3d_bind_api,
|
2014-01-18 17:43:07 +00:00
|
|
|
NULL, // gfx_ctx_swap_interval
|
|
|
|
NULL, // gfx_ctx_set_video_mode
|
|
|
|
NULL, // gfx_ctx_get_video_size
|
|
|
|
NULL,
|
2014-01-18 19:49:57 +00:00
|
|
|
gfx_ctx_d3d_update_title,
|
|
|
|
gfx_ctx_d3d_check_window,
|
2014-01-18 20:13:08 +00:00
|
|
|
d3d_resize,
|
2014-01-18 19:49:57 +00:00
|
|
|
gfx_ctx_d3d_has_focus,
|
|
|
|
gfx_ctx_d3d_swap_buffers,
|
|
|
|
gfx_ctx_d3d_input_driver,
|
|
|
|
NULL,
|
|
|
|
gfx_ctx_d3d_show_mouse,
|
2014-01-18 17:43:07 +00:00
|
|
|
"d3d9",
|
|
|
|
};
|