mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-29 11:10:27 +00:00
314 lines
10 KiB
C
314 lines
10 KiB
C
/* RetroArch - A frontend for libretro.
|
|
* Copyright (C) 2014-2018 - Ali Bouhlel
|
|
*
|
|
* 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/>.
|
|
*/
|
|
|
|
#define CINTERFACE
|
|
|
|
#include <retro_miscellaneous.h>
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include "../menu_driver.h"
|
|
|
|
#include "../../retroarch.h"
|
|
#include "../../gfx/font_driver.h"
|
|
#include "../../gfx/video_driver.h"
|
|
#include "../../gfx/common/d3d12_common.h"
|
|
|
|
static const float* menu_display_d3d12_get_default_vertices(void)
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
static const float* menu_display_d3d12_get_default_tex_coords(void)
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
static void* menu_display_d3d12_get_default_mvp(video_frame_info_t *video_info)
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
static void menu_display_d3d12_blend_begin(video_frame_info_t *video_info)
|
|
{
|
|
d3d12_video_t* d3d12 = video_info ? (d3d12_video_t*)video_info->userdata : NULL;
|
|
|
|
d3d12->sprites.pipe = d3d12->sprites.pipe_blend;
|
|
D3D12SetPipelineState(d3d12->queue.cmd, d3d12->sprites.pipe);
|
|
}
|
|
|
|
static void menu_display_d3d12_blend_end(video_frame_info_t *video_info)
|
|
{
|
|
d3d12_video_t* d3d12 = video_info ? (d3d12_video_t*)video_info->userdata : NULL;
|
|
|
|
d3d12->sprites.pipe = d3d12->sprites.pipe_noblend;
|
|
D3D12SetPipelineState(d3d12->queue.cmd, d3d12->sprites.pipe);
|
|
}
|
|
|
|
static void menu_display_d3d12_viewport(menu_display_ctx_draw_t *draw,
|
|
video_frame_info_t *video_info)
|
|
{
|
|
}
|
|
|
|
static void menu_display_d3d12_draw(menu_display_ctx_draw_t *draw,
|
|
video_frame_info_t *video_info)
|
|
{
|
|
int vertex_count;
|
|
d3d12_video_t* d3d12 = video_info ?
|
|
(d3d12_video_t*)video_info->userdata : NULL;
|
|
|
|
if (!d3d12 || !draw || !draw->texture)
|
|
return;
|
|
|
|
switch (draw->pipeline.id)
|
|
{
|
|
case VIDEO_SHADER_MENU:
|
|
case VIDEO_SHADER_MENU_2:
|
|
case VIDEO_SHADER_MENU_3:
|
|
case VIDEO_SHADER_MENU_4:
|
|
case VIDEO_SHADER_MENU_5:
|
|
case VIDEO_SHADER_MENU_6:
|
|
D3D12SetPipelineState(d3d12->queue.cmd, d3d12->pipes[draw->pipeline.id]);
|
|
D3D12DrawInstanced(d3d12->queue.cmd, draw->coords->vertices, 1, 0, 0);
|
|
D3D12SetPipelineState(d3d12->queue.cmd, d3d12->sprites.pipe);
|
|
D3D12IASetPrimitiveTopology(d3d12->queue.cmd, D3D_PRIMITIVE_TOPOLOGY_POINTLIST);
|
|
D3D12IASetVertexBuffers(d3d12->queue.cmd, 0, 1, &d3d12->sprites.vbo_view);
|
|
return;
|
|
}
|
|
|
|
if (draw->coords->vertex && draw->coords->tex_coord && draw->coords->color)
|
|
vertex_count = draw->coords->vertices;
|
|
else
|
|
vertex_count = 1;
|
|
|
|
if (!d3d12->sprites.enabled || vertex_count > d3d12->sprites.capacity)
|
|
return;
|
|
|
|
if (d3d12->sprites.offset + vertex_count > d3d12->sprites.capacity)
|
|
d3d12->sprites.offset = 0;
|
|
|
|
{
|
|
d3d12_sprite_t* sprite;
|
|
D3D12_RANGE range = { 0, 0 };
|
|
D3D12Map(d3d12->sprites.vbo, 0, &range, (void**)&sprite);
|
|
sprite += d3d12->sprites.offset;
|
|
|
|
if (vertex_count == 1)
|
|
{
|
|
|
|
sprite->pos.x = draw->x / (float)d3d12->chain.viewport.Width;
|
|
sprite->pos.y = (d3d12->chain.viewport.Height - draw->y - draw->height) /
|
|
(float)d3d12->chain.viewport.Height;
|
|
sprite->pos.w = draw->width / (float)d3d12->chain.viewport.Width;
|
|
sprite->pos.h = draw->height / (float)d3d12->chain.viewport.Height;
|
|
|
|
sprite->coords.u = 0.0f;
|
|
sprite->coords.v = 0.0f;
|
|
sprite->coords.w = 1.0f;
|
|
sprite->coords.h = 1.0f;
|
|
|
|
if (draw->scale_factor)
|
|
sprite->params.scaling = draw->scale_factor;
|
|
else
|
|
sprite->params.scaling = 1.0f;
|
|
|
|
sprite->params.rotation = draw->rotation;
|
|
|
|
sprite->colors[3] = DXGI_COLOR_RGBA(
|
|
0xFF * draw->coords->color[0], 0xFF * draw->coords->color[1],
|
|
0xFF * draw->coords->color[2], 0xFF * draw->coords->color[3]);
|
|
sprite->colors[2] = DXGI_COLOR_RGBA(
|
|
0xFF * draw->coords->color[4], 0xFF * draw->coords->color[5],
|
|
0xFF * draw->coords->color[6], 0xFF * draw->coords->color[7]);
|
|
sprite->colors[1] = DXGI_COLOR_RGBA(
|
|
0xFF * draw->coords->color[8], 0xFF * draw->coords->color[9],
|
|
0xFF * draw->coords->color[10], 0xFF * draw->coords->color[11]);
|
|
sprite->colors[0] = DXGI_COLOR_RGBA(
|
|
0xFF * draw->coords->color[12], 0xFF * draw->coords->color[13],
|
|
0xFF * draw->coords->color[14], 0xFF * draw->coords->color[15]);
|
|
}
|
|
else
|
|
{
|
|
int i;
|
|
const float* vertex = draw->coords->vertex;
|
|
const float* tex_coord = draw->coords->tex_coord;
|
|
const float* color = draw->coords->color;
|
|
|
|
for (i = 0; i < vertex_count; i++)
|
|
{
|
|
d3d12_vertex_t* v = (d3d12_vertex_t*)sprite;
|
|
v->position[0] = *vertex++;
|
|
v->position[1] = *vertex++;
|
|
v->texcoord[0] = *tex_coord++;
|
|
v->texcoord[1] = *tex_coord++;
|
|
v->color[0] = *color++;
|
|
v->color[1] = *color++;
|
|
v->color[2] = *color++;
|
|
v->color[3] = *color++;
|
|
|
|
sprite++;
|
|
}
|
|
D3D12SetPipelineState(d3d12->queue.cmd,
|
|
d3d12->pipes[VIDEO_SHADER_STOCK_BLEND]);
|
|
D3D12IASetPrimitiveTopology(d3d12->queue.cmd,
|
|
D3D_PRIMITIVE_TOPOLOGY_TRIANGLESTRIP);
|
|
}
|
|
|
|
range.Begin = d3d12->sprites.offset * sizeof(*sprite);
|
|
range.End = (d3d12->sprites.offset + vertex_count) * sizeof(*sprite);
|
|
D3D12Unmap(d3d12->sprites.vbo, 0, &range);
|
|
}
|
|
|
|
{
|
|
d3d12_texture_t* texture = (d3d12_texture_t*)draw->texture;
|
|
if (texture->dirty)
|
|
{
|
|
d3d12_upload_texture(d3d12->queue.cmd,
|
|
texture, video_info->userdata);
|
|
|
|
if (vertex_count > 1)
|
|
D3D12SetPipelineState(d3d12->queue.cmd,
|
|
d3d12->pipes[VIDEO_SHADER_STOCK_BLEND]);
|
|
else
|
|
D3D12SetPipelineState(d3d12->queue.cmd,
|
|
d3d12->sprites.pipe);
|
|
}
|
|
d3d12_set_texture_and_sampler(d3d12->queue.cmd, texture);
|
|
}
|
|
|
|
D3D12DrawInstanced(d3d12->queue.cmd, vertex_count, 1, d3d12->sprites.offset, 0);
|
|
d3d12->sprites.offset += vertex_count;
|
|
|
|
if (vertex_count > 1)
|
|
{
|
|
D3D12SetPipelineState(d3d12->queue.cmd, d3d12->sprites.pipe);
|
|
D3D12IASetPrimitiveTopology(d3d12->queue.cmd, D3D_PRIMITIVE_TOPOLOGY_POINTLIST);
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
static void menu_display_d3d12_draw_pipeline(menu_display_ctx_draw_t *draw,
|
|
video_frame_info_t *video_info)
|
|
{
|
|
d3d12_video_t *d3d12 = video_info ?
|
|
(d3d12_video_t*)video_info->userdata : NULL;
|
|
|
|
if (!d3d12 || !draw)
|
|
return;
|
|
|
|
switch (draw->pipeline.id)
|
|
{
|
|
case VIDEO_SHADER_MENU:
|
|
case VIDEO_SHADER_MENU_2:
|
|
{
|
|
video_coord_array_t* ca = menu_display_get_coords_array();
|
|
|
|
if (!d3d12->menu_pipeline_vbo)
|
|
{
|
|
void* vertex_data_begin;
|
|
D3D12_RANGE read_range = { 0, 0 };
|
|
|
|
d3d12->menu_pipeline_vbo_view.StrideInBytes = 2 * sizeof(float);
|
|
d3d12->menu_pipeline_vbo_view.SizeInBytes =
|
|
ca->coords.vertices * d3d12->menu_pipeline_vbo_view.StrideInBytes;
|
|
d3d12->menu_pipeline_vbo_view.BufferLocation = d3d12_create_buffer(
|
|
d3d12->device, d3d12->menu_pipeline_vbo_view.SizeInBytes,
|
|
&d3d12->menu_pipeline_vbo);
|
|
|
|
D3D12Map(d3d12->menu_pipeline_vbo, 0, &read_range, &vertex_data_begin);
|
|
memcpy(vertex_data_begin, ca->coords.vertex, d3d12->menu_pipeline_vbo_view.SizeInBytes);
|
|
D3D12Unmap(d3d12->menu_pipeline_vbo, 0, NULL);
|
|
}
|
|
D3D12IASetVertexBuffers(d3d12->queue.cmd, 0, 1, &d3d12->menu_pipeline_vbo_view);
|
|
draw->coords->vertices = ca->coords.vertices;
|
|
break;
|
|
}
|
|
|
|
case VIDEO_SHADER_MENU_3:
|
|
case VIDEO_SHADER_MENU_4:
|
|
case VIDEO_SHADER_MENU_5:
|
|
case VIDEO_SHADER_MENU_6:
|
|
D3D12IASetVertexBuffers(d3d12->queue.cmd, 0, 1, &d3d12->frame.vbo_view);
|
|
draw->coords->vertices = 4;
|
|
break;
|
|
default:
|
|
return;
|
|
}
|
|
D3D12IASetPrimitiveTopology(d3d12->queue.cmd, D3D_PRIMITIVE_TOPOLOGY_TRIANGLESTRIP);
|
|
|
|
d3d12->ubo_values.time += 0.01f;
|
|
|
|
{
|
|
D3D12_RANGE read_range = { 0, 0 };
|
|
d3d12_uniform_t* mapped_ubo;
|
|
D3D12Map(d3d12->ubo, 0, &read_range, (void**)&mapped_ubo);
|
|
*mapped_ubo = d3d12->ubo_values;
|
|
D3D12Unmap(d3d12->ubo, 0, NULL);
|
|
}
|
|
D3D12SetGraphicsRootConstantBufferView(
|
|
d3d12->queue.cmd, ROOT_ID_UBO, d3d12->ubo_view.BufferLocation);
|
|
}
|
|
|
|
static void menu_display_d3d12_restore_clear_color(void) {}
|
|
|
|
static void menu_display_d3d12_clear_color(
|
|
menu_display_ctx_clearcolor_t* clearcolor, video_frame_info_t *video_info)
|
|
{
|
|
d3d12_video_t* d3d12 = video_info ? (d3d12_video_t*)video_info->userdata : NULL;
|
|
|
|
if (!d3d12 || !clearcolor)
|
|
return;
|
|
|
|
D3D12ClearRenderTargetView(
|
|
d3d12->queue.cmd, d3d12->chain.desc_handles[d3d12->chain.frame_index], (float*)clearcolor,
|
|
0, NULL);
|
|
}
|
|
|
|
static bool menu_display_d3d12_font_init_first(
|
|
void** font_handle,
|
|
void* video_data,
|
|
const char* font_path,
|
|
float font_size,
|
|
bool is_threaded)
|
|
{
|
|
font_data_t** handle = (font_data_t**)font_handle;
|
|
font_data_t* new_handle = font_driver_init_first(
|
|
video_data, font_path, font_size, true, is_threaded, FONT_DRIVER_RENDER_D3D12_API);
|
|
if (!new_handle)
|
|
return false;
|
|
*handle = new_handle;
|
|
return true;
|
|
}
|
|
|
|
menu_display_ctx_driver_t menu_display_ctx_d3d12 = {
|
|
menu_display_d3d12_draw,
|
|
menu_display_d3d12_draw_pipeline,
|
|
menu_display_d3d12_viewport,
|
|
menu_display_d3d12_blend_begin,
|
|
menu_display_d3d12_blend_end,
|
|
menu_display_d3d12_restore_clear_color,
|
|
menu_display_d3d12_clear_color,
|
|
menu_display_d3d12_get_default_mvp,
|
|
menu_display_d3d12_get_default_vertices,
|
|
menu_display_d3d12_get_default_tex_coords,
|
|
menu_display_d3d12_font_init_first,
|
|
MENU_VIDEO_DRIVER_DIRECT3D12,
|
|
"menu_display_d3d12",
|
|
true
|
|
};
|