Mercurial > repos > blastem
view ppm.h @ 2707:a64c0e1ed6ac
Implement speed control and reset for media player. Fix other bindings that could cause it to crash
author | Michael Pavone <pavone@retrodev.com> |
---|---|
date | Sun, 06 Jul 2025 20:43:37 -0700 |
parents | da2e06c42d16 |
children |
line wrap: on
line source
#ifndef PPM_H_ #define PPM_H_ #include "pixel.h" void save_ppm(FILE *f, pixel_t *buffer, uint32_t width, uint32_t height, uint32_t pitch); #endif //PPM_H_