diff --git a/libretro-sdk/gfx/scaler/scaler.c b/libretro-sdk/gfx/scaler/scaler.c index 0685ee3b5f..f555e842ad 100644 --- a/libretro-sdk/gfx/scaler/scaler.c +++ b/libretro-sdk/gfx/scaler/scaler.c @@ -242,6 +242,14 @@ void scaler_ctx_gen_reset(struct scaler_ctx *ctx) memset(&ctx->output, 0, sizeof(ctx->output)); } +/** + * scaler_ctx_scale: + * @ctx : pointer to scaler context object. + * @output : pointer to output image. + * @input : pointer to input image. + * + * Scales an input image to an output image. + **/ void scaler_ctx_scale(struct scaler_ctx *ctx, void *output, const void *input) {