2010-01-03 14:54:51 +00:00
|
|
|
#ifndef MPLAYER_MATRIXVIEW_H
|
|
|
|
#define MPLAYER_MATRIXVIEW_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
2010-01-04 10:24:10 +00:00
|
|
|
|
2010-01-03 14:54:51 +00:00
|
|
|
void matrixview_init (int w, int h);
|
|
|
|
void matrixview_reshape (int w, int h);
|
2010-01-04 10:24:10 +00:00
|
|
|
void matrixview_draw (int w, int h, double currentTime, float frameTime,
|
|
|
|
uint8_t *data);
|
2010-01-03 14:54:51 +00:00
|
|
|
void matrixview_matrix_resize(int w, int h);
|
|
|
|
void matrixview_contrast_set(float contrast);
|
|
|
|
void matrixview_brightness_set(float brightness);
|
|
|
|
|
|
|
|
#endif /* MPLAYER_MATRIXVIEW_H */
|