~ubuntu-branches/ubuntu/wily/mpv/wily

« back to all changes in this revision

Viewing changes to video/out/gl_common.h

  • Committer: Package Import Robot
  • Author(s): Alessandro Ghedini
  • Date: 2013-10-16 12:38:59 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20131016123859-wj70wr6n3mzimx3e
Tags: 0.2.0-1
* New upstream release
* Install sample configuration files as examples
* Enable Lua scripting support
* Remove copyright for talloc (not used anymore)
* Update installed docs list
* Update 01_spelling.patch
* Enable VAAPI support

Show diffs side-by-side

added added

removed removed

Lines of Context:
64
64
                int x, int y, int w, int h, uint8_t val, void **scratch);
65
65
void glDownloadTex(GL *gl, GLenum target, GLenum format, GLenum type,
66
66
                   void *dataptr, int stride);
67
 
void glCheckError(GL *gl, const char *info);
 
67
void glCheckError(GL *gl, struct mp_log *log, const char *info);
68
68
mp_image_t *glGetWindowScreenshot(GL *gl);
69
69
 
70
70
#define GL_3D_RED_CYAN        1
167
167
void *mp_getdladdr(const char *s);
168
168
 
169
169
void mpgl_load_functions(GL *gl, void *(*getProcAddress)(const GLubyte *),
170
 
                         const char *ext2);
 
170
                         const char *ext2, struct mp_log *log);
171
171
 
172
172
// print a multi line string with line numbers (e.g. for shader sources)
173
173
// log, lev: module and log level, as in mp_msg()