mirror of
https://github.com/libretro/RetroArch
synced 2025-01-01 12:11:47 +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);
|