summaryrefslogtreecommitdiffstats
path: root/libvo/gl_common.h
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-09-12 14:51:30 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-09-12 14:51:30 +0000
commit7a84b40ce4bb720cd5fbfbe608b236875028cf09 (patch)
treeb5b335454fa5354af029305889c82f4ba2a3f717 /libvo/gl_common.h
parent36dd71db3c8c4a3748a415366de0c47847ba39cd (diff)
downloadmpv-7a84b40ce4bb720cd5fbfbe608b236875028cf09.tar.bz2
mpv-7a84b40ce4bb720cd5fbfbe608b236875028cf09.tar.xz
Fix border color (forgot to divide by 255.0).
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@16461 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/gl_common.h')
-rw-r--r--libvo/gl_common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libvo/gl_common.h b/libvo/gl_common.h
index 31792251c1..9223d81c21 100644
--- a/libvo/gl_common.h
+++ b/libvo/gl_common.h
@@ -65,7 +65,7 @@ int glFindFormat(uint32_t format, uint32_t *bpp, GLint *gl_texfmt,
GLenum *gl_format, GLenum *gl_type);
int glFmt2bpp(GLenum format, GLenum type);
void glCreateClearTex(GLenum target, GLenum fmt, GLint filter,
- int w, int h, char val);
+ int w, int h, unsigned char val);
void glUploadTex(GLenum target, GLenum format, GLenum type,
const char *data, int stride,
int x, int y, int w, int h, int slice);