mirror of
https://github.com/libretro/RetroArch
synced 2025-03-31 01:21:03 +00:00
Style nits.
This commit is contained in:
parent
6000bd33e9
commit
f121f8d2bc
13
gfx/gl.c
13
gfx/gl.c
@ -760,16 +760,17 @@ static void gl_update_input_size(gl_t *gl, unsigned width, unsigned height, unsi
|
|||||||
#ifdef __CELLOS_LV2__
|
#ifdef __CELLOS_LV2__
|
||||||
static void gl_copy_frame(gl_t *gl, const void *frame, unsigned width, unsigned height, unsigned pitch)
|
static void gl_copy_frame(gl_t *gl, const void *frame, unsigned width, unsigned height, unsigned pitch)
|
||||||
{
|
{
|
||||||
size_t buffer_addr = gl->tex_w * gl->tex_h * gl->tex_index * gl->base_size;
|
size_t buffer_addr = gl->tex_w * gl->tex_h * gl->tex_index * gl->base_size;
|
||||||
size_t buffer_stride = gl->tex_w * gl->base_size;
|
size_t buffer_stride = gl->tex_w * gl->base_size;
|
||||||
const uint8_t *frame_copy = frame;
|
const uint8_t *frame_copy = frame;
|
||||||
size_t frame_copy_size = width * gl->base_size;
|
size_t frame_copy_size = width * gl->base_size;
|
||||||
|
|
||||||
for (unsigned h = 0; h < height; h++)
|
for (unsigned h = 0; h < height; h++)
|
||||||
{
|
{
|
||||||
glBufferSubData(GL_TEXTURE_REFERENCE_BUFFER_SCE,
|
glBufferSubData(GL_TEXTURE_REFERENCE_BUFFER_SCE,
|
||||||
buffer_addr,
|
buffer_addr,
|
||||||
frame_copy_size,
|
frame_copy_size,
|
||||||
frame_copy);
|
frame_copy);
|
||||||
|
|
||||||
frame_copy += pitch;
|
frame_copy += pitch;
|
||||||
buffer_addr += buffer_stride;
|
buffer_addr += buffer_stride;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user