Move define to scaler_filter.c

This commit is contained in:
twinaphex 2016-09-12 17:32:35 +02:00
parent b4d75fbafd
commit 79222de018
2 changed files with 2 additions and 2 deletions

View File

@ -30,6 +30,8 @@
#include <retro_inline.h>
#include <filters.h>
#define FILTER_UNITY (1 << 14)
static bool allocate_filters(struct scaler_ctx *ctx)
{
ctx->horiz.filter = (int16_t*)scaler_alloc(sizeof(int16_t), ctx->horiz.filter_stride * ctx->out_width);

View File

@ -32,8 +32,6 @@
RETRO_BEGIN_DECLS
#define FILTER_UNITY (1 << 14)
enum scaler_pix_fmt
{
SCALER_FMT_ARGB8888 = 0,