mirror of
https://github.com/CTCaer/RetroArch.git
synced 2024-12-21 10:20:21 +00:00
xdk_renderchain.cpp should become the D3D8 renderchain implementation
(for Xbox OG/PC); xdk360_renderchain.cpp will become the D3D9 HLSL one (for 360/PC)
This commit is contained in:
parent
521d3220b5
commit
c96b843330
520
gfx/drivers_renderchain/xdk360_renderchain.cpp
Normal file
520
gfx/drivers_renderchain/xdk360_renderchain.cpp
Normal file
@ -0,0 +1,520 @@
|
||||
/* RetroArch - A frontend for libretro.
|
||||
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
||||
* Copyright (C) 2011-2017 - 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 <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include <string.h>
|
||||
#include <retro_inline.h>
|
||||
|
||||
#include "../drivers/d3d.h"
|
||||
#include "../common/d3d_common.h"
|
||||
|
||||
#include "../video_driver.h"
|
||||
|
||||
#include "../../configuration.h"
|
||||
#include "../../verbosity.h"
|
||||
|
||||
typedef struct xdk_renderchain
|
||||
{
|
||||
unsigned pixel_size;
|
||||
LPDIRECT3DDEVICE dev;
|
||||
const video_info_t *video_info;
|
||||
LPDIRECT3DTEXTURE tex;
|
||||
LPDIRECT3DVERTEXBUFFER vertex_buf;
|
||||
unsigned last_width;
|
||||
unsigned last_height;
|
||||
#ifdef HAVE_D3D9
|
||||
LPDIRECT3DVERTEXDECLARATION vertex_decl;
|
||||
#else
|
||||
void *vertex_decl;
|
||||
#endif
|
||||
unsigned tex_w;
|
||||
unsigned tex_h;
|
||||
uint64_t frame_count;
|
||||
} xdk_renderchain_t;
|
||||
|
||||
static void renderchain_set_mvp(void *data, unsigned vp_width,
|
||||
unsigned vp_height, unsigned rotation)
|
||||
{
|
||||
#if defined(HAVE_CG) || defined(HAVE_GLSL) || defined(HAVE_HLSL)
|
||||
video_shader_ctx_mvp_t mvp;
|
||||
#endif
|
||||
d3d_video_t *d3d = (d3d_video_t*)data;
|
||||
LPDIRECT3DDEVICE d3dr = (LPDIRECT3DDEVICE)d3d->dev;
|
||||
|
||||
#if defined(_XBOX360) && defined(HAVE_HLSL)
|
||||
hlsl_set_proj_matrix(XMMatrixRotationZ(rotation * (M_PI / 2.0)));
|
||||
|
||||
mvp.data = d3d;
|
||||
mvp.matrix = NULL;
|
||||
|
||||
video_shader_driver_set_mvp(mvp);
|
||||
#elif defined(HAVE_D3D8)
|
||||
D3DXMATRIX p_out, p_rotate, mat;
|
||||
D3DXMatrixOrthoOffCenterLH(&mat, 0, vp_width, vp_height, 0, 0.0f, 1.0f);
|
||||
D3DXMatrixIdentity(&p_out);
|
||||
D3DXMatrixRotationZ(&p_rotate, rotation * (M_PI / 2.0));
|
||||
|
||||
d3d_set_transform(d3dr, D3DTS_WORLD, &p_rotate);
|
||||
d3d_set_transform(d3dr, D3DTS_VIEW, &p_out);
|
||||
d3d_set_transform(d3dr, D3DTS_PROJECTION, &p_out);
|
||||
#endif
|
||||
}
|
||||
|
||||
static void xdk_renderchain_clear(void *data)
|
||||
{
|
||||
xdk_renderchain_t *chain = (xdk_renderchain_t*)data;
|
||||
|
||||
d3d_texture_free(chain->tex);
|
||||
d3d_vertex_buffer_free(chain->vertex_buf, chain->vertex_decl);
|
||||
}
|
||||
|
||||
static bool xdk_renderchain_init_shader_fvf(void *data, void *pass_data)
|
||||
{
|
||||
d3d_video_t *d3d = (d3d_video_t*)data;
|
||||
d3d_video_t *pass = (d3d_video_t*)data;
|
||||
LPDIRECT3DDEVICE d3dr = (LPDIRECT3DDEVICE)d3d->dev;
|
||||
xdk_renderchain_t *chain = (xdk_renderchain_t*)d3d->renderchain_data;
|
||||
|
||||
(void)pass_data;
|
||||
|
||||
#if defined(_XBOX360)
|
||||
static const D3DVERTEXELEMENT VertexElements[] =
|
||||
{
|
||||
{ 0, 0 * sizeof(float), D3DDECLTYPE_FLOAT2, D3DDECLMETHOD_DEFAULT, D3DDECLUSAGE_POSITION, 0 },
|
||||
{ 0, 2 * sizeof(float), D3DDECLTYPE_FLOAT2, D3DDECLMETHOD_DEFAULT, D3DDECLUSAGE_TEXCOORD, 0 },
|
||||
D3DDECL_END()
|
||||
};
|
||||
|
||||
if (FAILED(d3dr->CreateVertexDeclaration(VertexElements, &chain->vertex_decl)))
|
||||
return false;
|
||||
#endif
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
static bool renderchain_create_first_pass(void *data,
|
||||
const video_info_t *info)
|
||||
{
|
||||
d3d_video_t *d3d = (d3d_video_t*)data;
|
||||
LPDIRECT3DDEVICE d3dr = (LPDIRECT3DDEVICE)d3d->dev;
|
||||
xdk_renderchain_t *chain = (xdk_renderchain_t*)d3d->renderchain_data;
|
||||
|
||||
chain->vertex_buf = d3d_vertex_buffer_new(d3dr, 4 * sizeof(Vertex),
|
||||
D3DUSAGE_WRITEONLY, D3DFVF_CUSTOMVERTEX, D3DPOOL_MANAGED,
|
||||
NULL);
|
||||
|
||||
if (!chain->vertex_buf)
|
||||
return false;
|
||||
|
||||
chain->tex = d3d_texture_new(d3dr, NULL,
|
||||
chain->tex_w, chain->tex_h, 1, 0,
|
||||
info->rgb32 ? D3DFMT_LIN_X8R8G8B8 : D3DFMT_LIN_R5G6B5,
|
||||
0, 0, 0, 0, NULL, NULL);
|
||||
|
||||
if (!chain->tex)
|
||||
return false;
|
||||
|
||||
d3d_set_sampler_address_u(d3dr, D3DSAMP_ADDRESSU, D3DTADDRESS_BORDER);
|
||||
d3d_set_sampler_address_v(d3dr, D3DSAMP_ADDRESSV, D3DTADDRESS_BORDER);
|
||||
#ifdef _XBOX1
|
||||
d3d_set_render_state(d3dr, D3DRS_LIGHTING, 0);
|
||||
#endif
|
||||
d3d_set_render_state(d3dr, D3DRS_CULLMODE, D3DCULL_NONE);
|
||||
d3d_set_render_state(d3dr, D3DRS_ZENABLE, FALSE);
|
||||
|
||||
if (!xdk_renderchain_init_shader_fvf(chain, chain))
|
||||
return false;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
static void renderchain_set_vertices(void *data, unsigned pass,
|
||||
unsigned vert_width, unsigned vert_height, uint64_t frame_count)
|
||||
{
|
||||
#if defined(HAVE_CG) || defined(HAVE_GLSL) || defined(HAVE_HLSL)
|
||||
#ifdef _XBOX
|
||||
video_shader_ctx_params_t params;
|
||||
video_shader_ctx_info_t shader_info;
|
||||
#endif
|
||||
#endif
|
||||
unsigned width, height;
|
||||
d3d_video_t *d3d = (d3d_video_t*)data;
|
||||
xdk_renderchain_t *chain = d3d ? (xdk_renderchain_t*)d3d->renderchain_data : NULL;
|
||||
|
||||
video_driver_get_size(&width, &height);
|
||||
|
||||
if (!chain)
|
||||
return;
|
||||
|
||||
if (chain->last_width != vert_width || chain->last_height != vert_height)
|
||||
{
|
||||
unsigned i;
|
||||
Vertex vert[4];
|
||||
void *verts = NULL;
|
||||
|
||||
chain->last_width = vert_width;
|
||||
chain->last_height = vert_height;
|
||||
|
||||
float tex_w = vert_width;
|
||||
float tex_h = vert_height;
|
||||
#ifdef _XBOX360
|
||||
tex_w /= ((float)chain->tex_w);
|
||||
tex_h /= ((float)chain->tex_h);
|
||||
#endif
|
||||
|
||||
vert[0].x = -1.0f;
|
||||
vert[1].x = 1.0f;
|
||||
vert[2].x = -1.0f;
|
||||
vert[3].x = 1.0f;
|
||||
|
||||
vert[0].y = -1.0f;
|
||||
vert[1].y = -1.0f;
|
||||
vert[2].y = 1.0f;
|
||||
vert[3].y = 1.0f;
|
||||
#if defined(_XBOX1)
|
||||
vert[0].z = 1.0f;
|
||||
vert[1].z = 1.0f;
|
||||
vert[2].z = 1.0f;
|
||||
vert[3].z = 1.0f;
|
||||
|
||||
vert[0].rhw = 0.0f;
|
||||
vert[1].rhw = tex_w;
|
||||
vert[2].rhw = 0.0f;
|
||||
vert[3].rhw = tex_w;
|
||||
|
||||
vert[0].u = tex_h;
|
||||
vert[1].u = tex_h;
|
||||
vert[2].u = 0.0f;
|
||||
vert[3].u = 0.0f;
|
||||
|
||||
vert[0].v = 0.0f;
|
||||
vert[1].v = 0.0f;
|
||||
vert[2].v = 0.0f;
|
||||
vert[3].v = 0.0f;
|
||||
#elif defined(_XBOX360)
|
||||
vert[0].u = 0.0f;
|
||||
vert[1].u = tex_w;
|
||||
vert[2].u = 0.0f;
|
||||
vert[3].u = tex_w;
|
||||
|
||||
vert[0].v = tex_h;
|
||||
vert[1].v = tex_h;
|
||||
vert[2].v = 0.0f;
|
||||
vert[3].v = 0.0f;
|
||||
#endif
|
||||
|
||||
/* Align texels and vertices. */
|
||||
for (i = 0; i < 4; i++)
|
||||
{
|
||||
vert[i].x -= 0.5f / ((float)chain->tex_w);
|
||||
vert[i].y += 0.5f / ((float)chain->tex_h);
|
||||
}
|
||||
|
||||
verts = d3d_vertex_buffer_lock(chain->vertex_buf);
|
||||
memcpy(verts, vert, sizeof(vert));
|
||||
d3d_vertex_buffer_unlock(chain->vertex_buf);
|
||||
}
|
||||
|
||||
#if defined(HAVE_CG) || defined(HAVE_GLSL) || defined(HAVE_HLSL)
|
||||
#ifdef _XBOX
|
||||
renderchain_set_mvp(d3d, width, height, d3d->dev_rotation);
|
||||
|
||||
shader_info.data = d3d;
|
||||
shader_info.idx = pass;
|
||||
shader_info.set_active = true;
|
||||
|
||||
video_shader_driver_use(shader_info);
|
||||
|
||||
params.data = d3d;
|
||||
params.width = vert_width;
|
||||
params.height = vert_height;
|
||||
params.tex_width = chain->tex_w;
|
||||
params.tex_height = chain->tex_h;
|
||||
params.out_width = width;
|
||||
params.out_height = height;
|
||||
params.frame_counter = (unsigned int)frame_count;
|
||||
params.info = NULL;
|
||||
params.prev_info = NULL;
|
||||
params.feedback_info = NULL;
|
||||
params.fbo_info = NULL;
|
||||
params.fbo_info_cnt = 0;
|
||||
|
||||
video_shader_driver_set_parameters(params);
|
||||
#endif
|
||||
#endif
|
||||
}
|
||||
|
||||
static void renderchain_blit_to_texture(void *data, const void *frame,
|
||||
unsigned width, unsigned height, unsigned pitch)
|
||||
{
|
||||
D3DLOCKED_RECT d3dlr;
|
||||
xdk_renderchain_t *chain = (xdk_renderchain_t*)data;
|
||||
LPDIRECT3DDEVICE d3dr = (LPDIRECT3DDEVICE)chain->dev;
|
||||
|
||||
d3d_frame_postprocess(chain);
|
||||
|
||||
if (chain->last_width != width || chain->last_height != height)
|
||||
{
|
||||
d3d_lock_rectangle(chain->tex,
|
||||
0, &d3dlr, NULL, chain->tex_h, D3DLOCK_NOSYSLOCK);
|
||||
d3d_lock_rectangle_clear(chain->tex,
|
||||
0, &d3dlr, NULL, chain->tex_h, D3DLOCK_NOSYSLOCK);
|
||||
}
|
||||
|
||||
/* Set the texture to NULL so D3D doesn't complain about it being in use... */
|
||||
d3d_set_texture(d3dr, 0, NULL);
|
||||
d3d_texture_blit(chain->pixel_size, chain->tex,
|
||||
&d3dlr, frame, width, height, pitch);
|
||||
}
|
||||
|
||||
static void xdk_renderchain_deinit(void *data)
|
||||
{
|
||||
xdk_renderchain_t *renderchain = (xdk_renderchain_t*)data;
|
||||
|
||||
if (renderchain)
|
||||
free(renderchain);
|
||||
}
|
||||
|
||||
static void xdk_renderchain_deinit_shader(void *data)
|
||||
{
|
||||
(void)data;
|
||||
/* stub */
|
||||
}
|
||||
|
||||
static void xdk_renderchain_free(void *data)
|
||||
{
|
||||
d3d_video_t *chain = (d3d_video_t*)data;
|
||||
|
||||
if (!chain)
|
||||
return;
|
||||
|
||||
xdk_renderchain_deinit_shader(chain);
|
||||
xdk_renderchain_deinit(chain->renderchain_data);
|
||||
xdk_renderchain_clear(chain->renderchain_data);
|
||||
|
||||
#ifndef _XBOX
|
||||
if (chain->tracker)
|
||||
state_tracker_free(chain->tracker);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
void *xdk_renderchain_new(void)
|
||||
{
|
||||
xdk_renderchain_t *renderchain = (xdk_renderchain_t*)calloc(1, sizeof(*renderchain));
|
||||
if (!renderchain)
|
||||
return NULL;
|
||||
|
||||
return renderchain;
|
||||
}
|
||||
|
||||
static bool xdk_renderchain_init_shader(void *data, void *renderchain_data)
|
||||
{
|
||||
d3d_video_t *d3d = (d3d_video_t*)data;
|
||||
#if defined(HAVE_HLSL)
|
||||
const char *shader_path = NULL;
|
||||
settings_t *settings = config_get_ptr();
|
||||
#endif
|
||||
(void)renderchain_data;
|
||||
|
||||
if (!d3d)
|
||||
return false;
|
||||
|
||||
#if defined(HAVE_HLSL)
|
||||
RARCH_LOG("D3D]: Using HLSL shader backend.\n");
|
||||
shader_path = settings->path.shader;
|
||||
const shader_backend_t *shader = &hlsl_backend;
|
||||
|
||||
return video_shader_driver_init(hlsl_backend, d3d, shader_path);
|
||||
#endif
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
static bool xdk_renderchain_init(void *data,
|
||||
const void *_video_info,
|
||||
void *dev_data,
|
||||
const void *final_viewport_data,
|
||||
const void *info_data,
|
||||
bool rgb32
|
||||
)
|
||||
{
|
||||
unsigned width, height;
|
||||
d3d_video_t *d3d = (d3d_video_t*)data;
|
||||
LPDIRECT3DDEVICE d3dr = (LPDIRECT3DDEVICE)d3d->dev;
|
||||
const video_info_t *video_info = (const video_info_t*)_video_info;
|
||||
const LinkInfo *link_info = (const LinkInfo*)info_data;
|
||||
xdk_renderchain_t *chain = (xdk_renderchain_t*)d3d->renderchain_data;
|
||||
unsigned fmt = (rgb32) ? RETRO_PIXEL_FORMAT_XRGB8888 : RETRO_PIXEL_FORMAT_RGB565;
|
||||
struct video_viewport *custom_vp = video_viewport_get_custom();
|
||||
(void)final_viewport_data;
|
||||
|
||||
if (!xdk_renderchain_init_shader(d3d, NULL))
|
||||
return false;
|
||||
|
||||
video_driver_get_size(&width, &height);
|
||||
|
||||
chain->dev = (LPDIRECT3DDEVICE)dev_data;
|
||||
//chain->video_info = video_info;
|
||||
chain->pixel_size = (fmt == RETRO_PIXEL_FORMAT_RGB565) ? 2 : 4;
|
||||
chain->tex_w = link_info->tex_w;
|
||||
chain->tex_h = link_info->tex_h;
|
||||
|
||||
if (!renderchain_create_first_pass(d3d, video_info))
|
||||
return false;
|
||||
|
||||
/* FIXME */
|
||||
if (custom_vp->width == 0)
|
||||
custom_vp->width = width;
|
||||
|
||||
if (custom_vp->height == 0)
|
||||
custom_vp->height = height;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
static void xdk_renderchain_set_final_viewport(void *data,
|
||||
void *renderchain_data, const void *viewport_data)
|
||||
{
|
||||
(void)data;
|
||||
(void)renderchain_data;
|
||||
(void)viewport_data;
|
||||
|
||||
/* stub */
|
||||
}
|
||||
|
||||
static bool xdk_renderchain_render(void *data, const void *frame,
|
||||
unsigned frame_width, unsigned frame_height,
|
||||
unsigned pitch, unsigned rotation)
|
||||
{
|
||||
unsigned i;
|
||||
unsigned width, height;
|
||||
d3d_video_t *d3d = (d3d_video_t*)data;
|
||||
LPDIRECT3DDEVICE d3dr = (LPDIRECT3DDEVICE)d3d->dev;
|
||||
settings_t *settings = config_get_ptr();
|
||||
xdk_renderchain_t *chain = (xdk_renderchain_t*)d3d->renderchain_data;
|
||||
|
||||
chain->frame_count++;
|
||||
|
||||
video_driver_get_size(&width, &height);
|
||||
|
||||
renderchain_blit_to_texture(chain, frame, frame_width, frame_height, pitch);
|
||||
renderchain_set_vertices(d3d, 1, frame_width, frame_height, chain->frame_count);
|
||||
|
||||
d3d_set_texture(d3dr, 0, chain->tex);
|
||||
d3d_set_viewports(chain->dev, &d3d->final_viewport);
|
||||
d3d_set_sampler_minfilter(d3dr, 0, settings->bools.video_smooth ?
|
||||
D3DTEXF_LINEAR : D3DTEXF_POINT);
|
||||
d3d_set_sampler_magfilter(d3dr, 0, settings->bools.video_smooth ?
|
||||
D3DTEXF_LINEAR : D3DTEXF_POINT);
|
||||
|
||||
d3d_set_vertex_declaration(d3dr, chain->vertex_decl);
|
||||
for (i = 0; i < 4; i++)
|
||||
d3d_set_stream_source(d3dr, i, chain->vertex_buf, 0, sizeof(Vertex));
|
||||
|
||||
d3d_draw_primitive(d3dr, D3DPT_TRIANGLESTRIP, 0, 2);
|
||||
renderchain_set_mvp(d3d, width, height, d3d->dev_rotation);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
static bool xdk_renderchain_add_pass(void *data, const void *info_data)
|
||||
{
|
||||
(void)data;
|
||||
(void)info_data;
|
||||
|
||||
/* stub */
|
||||
return true;
|
||||
}
|
||||
|
||||
static void xdk_renderchain_add_state_tracker(void *data, void *tracker_data)
|
||||
{
|
||||
(void)data;
|
||||
(void)tracker_data;
|
||||
|
||||
/* stub */
|
||||
}
|
||||
|
||||
static void xdk_renderchain_convert_geometry(
|
||||
void *data, const void *info_data,
|
||||
unsigned *out_width, unsigned *out_height,
|
||||
unsigned width, unsigned height,
|
||||
void *final_viewport_data)
|
||||
{
|
||||
(void)data;
|
||||
(void)info_data;
|
||||
(void)out_width;
|
||||
(void)out_height;
|
||||
(void)width;
|
||||
(void)height;
|
||||
(void)final_viewport_data;
|
||||
|
||||
/* stub */
|
||||
}
|
||||
|
||||
static bool xdk_renderchain_reinit(void *data,
|
||||
const void *video_data)
|
||||
{
|
||||
d3d_video_t *d3d = (d3d_video_t*)data;
|
||||
const video_info_t *video = (const video_info_t*)video_data;
|
||||
xdk_renderchain_t *chain = (xdk_renderchain_t*)d3d->renderchain_data;
|
||||
|
||||
if (!d3d)
|
||||
return false;
|
||||
|
||||
chain->pixel_size = video->rgb32 ? sizeof(uint32_t) : sizeof(uint16_t);
|
||||
chain->tex_w = chain->tex_h = RARCH_SCALE_BASE * video->input_scale;
|
||||
RARCH_LOG(
|
||||
"Reinitializing renderchain - and textures (%u x %u @ %u bpp)\n",
|
||||
chain->tex_w, chain->tex_h, chain->pixel_size * CHAR_BIT);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
static void xdk_renderchain_viewport_info(void *data, struct video_viewport *vp)
|
||||
{
|
||||
unsigned width, height;
|
||||
d3d_video_t *d3d = (d3d_video_t*)data;
|
||||
|
||||
if (!d3d || !vp)
|
||||
return;
|
||||
|
||||
video_driver_get_size(&width, &height);
|
||||
|
||||
vp->x = d3d->final_viewport.X;
|
||||
vp->y = d3d->final_viewport.Y;
|
||||
vp->width = d3d->final_viewport.Width;
|
||||
vp->height = d3d->final_viewport.Height;
|
||||
|
||||
vp->full_width = width;
|
||||
vp->full_height = height;
|
||||
}
|
||||
|
||||
renderchain_driver_t xdk_d3d_renderchain = {
|
||||
xdk_renderchain_free,
|
||||
xdk_renderchain_new,
|
||||
xdk_renderchain_reinit,
|
||||
xdk_renderchain_init,
|
||||
xdk_renderchain_set_final_viewport,
|
||||
xdk_renderchain_add_pass,
|
||||
NULL,
|
||||
xdk_renderchain_add_state_tracker,
|
||||
xdk_renderchain_render,
|
||||
xdk_renderchain_convert_geometry,
|
||||
NULL,
|
||||
NULL,
|
||||
xdk_renderchain_viewport_info,
|
||||
"xdk",
|
||||
};
|
@ -34,11 +34,7 @@ typedef struct xdk_renderchain
|
||||
LPDIRECT3DVERTEXBUFFER vertex_buf;
|
||||
unsigned last_width;
|
||||
unsigned last_height;
|
||||
#ifdef HAVE_D3D9
|
||||
LPDIRECT3DVERTEXDECLARATION vertex_decl;
|
||||
#else
|
||||
void *vertex_decl;
|
||||
#endif
|
||||
unsigned tex_w;
|
||||
unsigned tex_h;
|
||||
uint64_t frame_count;
|
||||
@ -47,21 +43,10 @@ typedef struct xdk_renderchain
|
||||
static void renderchain_set_mvp(void *data, unsigned vp_width,
|
||||
unsigned vp_height, unsigned rotation)
|
||||
{
|
||||
#if defined(HAVE_CG) || defined(HAVE_GLSL) || defined(HAVE_HLSL)
|
||||
video_shader_ctx_mvp_t mvp;
|
||||
#endif
|
||||
d3d_video_t *d3d = (d3d_video_t*)data;
|
||||
LPDIRECT3DDEVICE d3dr = (LPDIRECT3DDEVICE)d3d->dev;
|
||||
|
||||
#if defined(_XBOX360) && defined(HAVE_HLSL)
|
||||
hlsl_set_proj_matrix(XMMatrixRotationZ(rotation * (M_PI / 2.0)));
|
||||
|
||||
mvp.data = d3d;
|
||||
mvp.matrix = NULL;
|
||||
|
||||
video_shader_driver_set_mvp(mvp);
|
||||
#elif defined(HAVE_D3D8)
|
||||
D3DXMATRIX p_out, p_rotate, mat;
|
||||
|
||||
D3DXMatrixOrthoOffCenterLH(&mat, 0, vp_width, vp_height, 0, 0.0f, 1.0f);
|
||||
D3DXMatrixIdentity(&p_out);
|
||||
D3DXMatrixRotationZ(&p_rotate, rotation * (M_PI / 2.0));
|
||||
@ -69,7 +54,6 @@ static void renderchain_set_mvp(void *data, unsigned vp_width,
|
||||
d3d_set_transform(d3dr, D3DTS_WORLD, &p_rotate);
|
||||
d3d_set_transform(d3dr, D3DTS_VIEW, &p_out);
|
||||
d3d_set_transform(d3dr, D3DTS_PROJECTION, &p_out);
|
||||
#endif
|
||||
}
|
||||
|
||||
static void xdk_renderchain_clear(void *data)
|
||||
@ -80,30 +64,6 @@ static void xdk_renderchain_clear(void *data)
|
||||
d3d_vertex_buffer_free(chain->vertex_buf, chain->vertex_decl);
|
||||
}
|
||||
|
||||
static bool xdk_renderchain_init_shader_fvf(void *data, void *pass_data)
|
||||
{
|
||||
d3d_video_t *d3d = (d3d_video_t*)data;
|
||||
d3d_video_t *pass = (d3d_video_t*)data;
|
||||
LPDIRECT3DDEVICE d3dr = (LPDIRECT3DDEVICE)d3d->dev;
|
||||
xdk_renderchain_t *chain = (xdk_renderchain_t*)d3d->renderchain_data;
|
||||
|
||||
(void)pass_data;
|
||||
|
||||
#if defined(_XBOX360)
|
||||
static const D3DVERTEXELEMENT VertexElements[] =
|
||||
{
|
||||
{ 0, 0 * sizeof(float), D3DDECLTYPE_FLOAT2, D3DDECLMETHOD_DEFAULT, D3DDECLUSAGE_POSITION, 0 },
|
||||
{ 0, 2 * sizeof(float), D3DDECLTYPE_FLOAT2, D3DDECLMETHOD_DEFAULT, D3DDECLUSAGE_TEXCOORD, 0 },
|
||||
D3DDECL_END()
|
||||
};
|
||||
|
||||
if (FAILED(d3dr->CreateVertexDeclaration(VertexElements, &chain->vertex_decl)))
|
||||
return false;
|
||||
#endif
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
static bool renderchain_create_first_pass(void *data,
|
||||
const video_info_t *info)
|
||||
{
|
||||
@ -134,21 +94,12 @@ static bool renderchain_create_first_pass(void *data,
|
||||
d3d_set_render_state(d3dr, D3DRS_CULLMODE, D3DCULL_NONE);
|
||||
d3d_set_render_state(d3dr, D3DRS_ZENABLE, FALSE);
|
||||
|
||||
if (!xdk_renderchain_init_shader_fvf(chain, chain))
|
||||
return false;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
static void renderchain_set_vertices(void *data, unsigned pass,
|
||||
unsigned vert_width, unsigned vert_height, uint64_t frame_count)
|
||||
{
|
||||
#if defined(HAVE_CG) || defined(HAVE_GLSL) || defined(HAVE_HLSL)
|
||||
#ifdef _XBOX
|
||||
video_shader_ctx_params_t params;
|
||||
video_shader_ctx_info_t shader_info;
|
||||
#endif
|
||||
#endif
|
||||
unsigned width, height;
|
||||
d3d_video_t *d3d = (d3d_video_t*)data;
|
||||
xdk_renderchain_t *chain = d3d ? (xdk_renderchain_t*)d3d->renderchain_data : NULL;
|
||||
@ -169,10 +120,6 @@ static void renderchain_set_vertices(void *data, unsigned pass,
|
||||
|
||||
float tex_w = vert_width;
|
||||
float tex_h = vert_height;
|
||||
#ifdef _XBOX360
|
||||
tex_w /= ((float)chain->tex_w);
|
||||
tex_h /= ((float)chain->tex_h);
|
||||
#endif
|
||||
|
||||
vert[0].x = -1.0f;
|
||||
vert[1].x = 1.0f;
|
||||
@ -183,7 +130,6 @@ static void renderchain_set_vertices(void *data, unsigned pass,
|
||||
vert[1].y = -1.0f;
|
||||
vert[2].y = 1.0f;
|
||||
vert[3].y = 1.0f;
|
||||
#if defined(_XBOX1)
|
||||
vert[0].z = 1.0f;
|
||||
vert[1].z = 1.0f;
|
||||
vert[2].z = 1.0f;
|
||||
@ -203,17 +149,6 @@ static void renderchain_set_vertices(void *data, unsigned pass,
|
||||
vert[1].v = 0.0f;
|
||||
vert[2].v = 0.0f;
|
||||
vert[3].v = 0.0f;
|
||||
#elif defined(_XBOX360)
|
||||
vert[0].u = 0.0f;
|
||||
vert[1].u = tex_w;
|
||||
vert[2].u = 0.0f;
|
||||
vert[3].u = tex_w;
|
||||
|
||||
vert[0].v = tex_h;
|
||||
vert[1].v = tex_h;
|
||||
vert[2].v = 0.0f;
|
||||
vert[3].v = 0.0f;
|
||||
#endif
|
||||
|
||||
/* Align texels and vertices. */
|
||||
for (i = 0; i < 4; i++)
|
||||
@ -226,34 +161,6 @@ static void renderchain_set_vertices(void *data, unsigned pass,
|
||||
memcpy(verts, vert, sizeof(vert));
|
||||
d3d_vertex_buffer_unlock(chain->vertex_buf);
|
||||
}
|
||||
|
||||
#if defined(HAVE_CG) || defined(HAVE_GLSL) || defined(HAVE_HLSL)
|
||||
#ifdef _XBOX
|
||||
renderchain_set_mvp(d3d, width, height, d3d->dev_rotation);
|
||||
|
||||
shader_info.data = d3d;
|
||||
shader_info.idx = pass;
|
||||
shader_info.set_active = true;
|
||||
|
||||
video_shader_driver_use(shader_info);
|
||||
|
||||
params.data = d3d;
|
||||
params.width = vert_width;
|
||||
params.height = vert_height;
|
||||
params.tex_width = chain->tex_w;
|
||||
params.tex_height = chain->tex_h;
|
||||
params.out_width = width;
|
||||
params.out_height = height;
|
||||
params.frame_counter = (unsigned int)frame_count;
|
||||
params.info = NULL;
|
||||
params.prev_info = NULL;
|
||||
params.feedback_info = NULL;
|
||||
params.fbo_info = NULL;
|
||||
params.fbo_info_cnt = 0;
|
||||
|
||||
video_shader_driver_set_parameters(params);
|
||||
#endif
|
||||
#endif
|
||||
}
|
||||
|
||||
static void renderchain_blit_to_texture(void *data, const void *frame,
|
||||
@ -287,12 +194,6 @@ static void xdk_renderchain_deinit(void *data)
|
||||
free(renderchain);
|
||||
}
|
||||
|
||||
static void xdk_renderchain_deinit_shader(void *data)
|
||||
{
|
||||
(void)data;
|
||||
/* stub */
|
||||
}
|
||||
|
||||
static void xdk_renderchain_free(void *data)
|
||||
{
|
||||
d3d_video_t *chain = (d3d_video_t*)data;
|
||||
@ -300,14 +201,11 @@ static void xdk_renderchain_free(void *data)
|
||||
if (!chain)
|
||||
return;
|
||||
|
||||
xdk_renderchain_deinit_shader(chain);
|
||||
xdk_renderchain_deinit(chain->renderchain_data);
|
||||
xdk_renderchain_clear(chain->renderchain_data);
|
||||
|
||||
#ifndef _XBOX
|
||||
if (chain->tracker)
|
||||
state_tracker_free(chain->tracker);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
@ -320,29 +218,6 @@ void *xdk_renderchain_new(void)
|
||||
return renderchain;
|
||||
}
|
||||
|
||||
static bool xdk_renderchain_init_shader(void *data, void *renderchain_data)
|
||||
{
|
||||
d3d_video_t *d3d = (d3d_video_t*)data;
|
||||
#if defined(HAVE_HLSL)
|
||||
const char *shader_path = NULL;
|
||||
settings_t *settings = config_get_ptr();
|
||||
#endif
|
||||
(void)renderchain_data;
|
||||
|
||||
if (!d3d)
|
||||
return false;
|
||||
|
||||
#if defined(HAVE_HLSL)
|
||||
RARCH_LOG("D3D]: Using HLSL shader backend.\n");
|
||||
shader_path = settings->path.shader;
|
||||
const shader_backend_t *shader = &hlsl_backend;
|
||||
|
||||
return video_shader_driver_init(hlsl_backend, d3d, shader_path);
|
||||
#endif
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
static bool xdk_renderchain_init(void *data,
|
||||
const void *_video_info,
|
||||
void *dev_data,
|
||||
@ -361,9 +236,6 @@ static bool xdk_renderchain_init(void *data,
|
||||
struct video_viewport *custom_vp = video_viewport_get_custom();
|
||||
(void)final_viewport_data;
|
||||
|
||||
if (!xdk_renderchain_init_shader(d3d, NULL))
|
||||
return false;
|
||||
|
||||
video_driver_get_size(&width, &height);
|
||||
|
||||
chain->dev = (LPDIRECT3DDEVICE)dev_data;
|
||||
|
Loading…
Reference in New Issue
Block a user