mirror of
https://github.com/libretro/RetroArch
synced 2024-12-29 12:31:05 +00:00
8 lines
179 B
C
8 lines
179 B
C
|
/* Very simple grayscale filter.
|
||
|
* Author: Hans-Kristian Arntzen
|
||
|
* License: Public domain
|
||
|
*/
|
||
|
|
||
|
#include <stdint.h>
|
||
|
void grayscale_filter(uint16_t *data, int width, int height);
|