mirror of
https://github.com/mpv-player/mpv
synced 2025-01-21 23:23:19 +00:00
13 lines
421 B
C
13 lines
421 B
C
|
#ifndef MPLAYER_MATRIXVIEW_H
|
||
|
#define MPLAYER_MATRIXVIEW_H
|
||
|
|
||
|
#include <stdint.h>
|
||
|
void matrixview_init (int w, int h);
|
||
|
void matrixview_reshape (int w, int h);
|
||
|
void matrixview_draw (int w, int h, double currentTime, float frameTime, uint8_t *data);
|
||
|
void matrixview_matrix_resize(int w, int h);
|
||
|
void matrixview_contrast_set(float contrast);
|
||
|
void matrixview_brightness_set(float brightness);
|
||
|
|
||
|
#endif /* MPLAYER_MATRIXVIEW_H */
|