blob: a6eecf05b6ce6cfc4254c098d80be9d43de04ecc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef vl_mc_h
#define vl_mc_h
#include "vl_types.h"
struct pipe_context;
struct vlRender;
int vlCreateR16SNormMC
(
struct pipe_context *pipe,
unsigned int video_width,
unsigned int video_height,
enum vlFormat video_format,
struct vlRender **render
);
#endif
|