fallout2-ce/src/grayscale.h

12 lines
243 B
C
Raw Normal View History

2022-05-19 01:51:26 -07:00
#ifndef GRAYSCALE_H
#define GRAYSCALE_H
2022-09-23 05:43:44 -07:00
namespace fallout {
2022-05-19 01:51:26 -07:00
void grayscalePaletteUpdate(int a1, int a2);
void grayscalePaletteApply(unsigned char* surface, int width, int height, int pitch);
2022-09-23 05:43:44 -07:00
} // namespace fallout
2022-05-19 01:51:26 -07:00
#endif /* GRAYSCALE_H */