mirror of
https://github.com/libretro/RetroArch.git
synced 2024-12-14 04:41:34 +00:00
19fa31f17d
Implemented for point, bilinear, lanczos. Partly optimized for SSE2.
30 lines
801 B
C
30 lines
801 B
C
#ifndef PIXCONV_H__
|
|
#define PIXCONV_H__
|
|
|
|
void conv_0rgb1555_argb8888(void *output, const void *input,
|
|
int width, int height,
|
|
int out_stride, int in_stride);
|
|
|
|
void conv_bgr24_argb8888(void *output, const void *input,
|
|
int width, int height,
|
|
int out_stride, int in_stride);
|
|
|
|
void conv_argb8888_0rgb1555(void *output, const void *input,
|
|
int width, int height,
|
|
int out_stride, int in_stride);
|
|
|
|
void conv_argb8888_bgr24(void *output, const void *input,
|
|
int width, int height,
|
|
int out_stride, int in_stride);
|
|
|
|
void conv_0rgb1555_bgr24(void *output, const void *input,
|
|
int width, int height,
|
|
int out_stride, int in_stride);
|
|
|
|
void conv_copy(void *output, const void *input,
|
|
int width, int height,
|
|
int out_stride, int in_stride);
|
|
|
|
#endif
|
|
|