mirror of
https://github.com/libretro/RetroArch
synced 2025-01-18 13:23:40 +00:00
11 lines
249 B
C
11 lines
249 B
C
|
#ifndef SCALER_INT_H__
|
||
|
#define SCALER_INT_H__
|
||
|
|
||
|
#include "scaler.h"
|
||
|
|
||
|
void scaler_argb8888_vert(const struct scaler_ctx *ctx, void *output, int stride);
|
||
|
void scaler_argb8888_horiz(const struct scaler_ctx *ctx, const void *input, int stride);
|
||
|
|
||
|
#endif
|
||
|
|