mirror of
https://github.com/libretro/RetroArch
synced 2025-03-29 22:20:21 +00:00
Remove scaler_get_ptr
This commit is contained in:
parent
009813a694
commit
cd51102281
@ -266,11 +266,6 @@ static bool find_video_driver(void)
|
||||
return true;
|
||||
}
|
||||
|
||||
video_pixel_scaler_t *scaler_get_ptr(void)
|
||||
{
|
||||
return scaler_ptr;
|
||||
}
|
||||
|
||||
/**
|
||||
* video_driver_get_ptr:
|
||||
*
|
||||
@ -1729,7 +1724,7 @@ static bool video_pixel_frame_scale(const void *data,
|
||||
size_t pitch)
|
||||
{
|
||||
static struct retro_perf_counter video_frame_conv = {0};
|
||||
video_pixel_scaler_t *scaler = scaler_get_ptr();
|
||||
video_pixel_scaler_t *scaler = scaler_ptr;
|
||||
|
||||
rarch_perf_init(&video_frame_conv, "video_frame_conv");
|
||||
|
||||
@ -1782,10 +1777,10 @@ void video_frame(const void *data, unsigned width,
|
||||
|
||||
if (video_pixel_frame_scale(data, width, height, pitch))
|
||||
{
|
||||
video_pixel_scaler_t *scaler = scaler_get_ptr();
|
||||
video_pixel_scaler_t *scaler = scaler_ptr;
|
||||
|
||||
data = scaler->scaler_out;
|
||||
pitch = scaler->scaler->out_stride;
|
||||
data = scaler->scaler_out;
|
||||
pitch = scaler->scaler->out_stride;
|
||||
}
|
||||
|
||||
video_driver_cached_frame_set(data, width, height, pitch);
|
||||
|
@ -517,8 +517,6 @@ bool video_monitor_get_fps(char *buf, size_t size,
|
||||
|
||||
unsigned video_pixel_get_alignment(unsigned pitch);
|
||||
|
||||
video_pixel_scaler_t *scaler_get_ptr(void);
|
||||
|
||||
const video_poke_interface_t *video_driver_get_poke(void);
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user