summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-10-16 23:51:36 +0200
committerwm4 <wm4@nowhere>2014-10-16 23:51:36 +0200
commit708ca05cc69468fdb4b83f80bb7b85a14ee5dd37 (patch)
treecb2931ec6e55bcba96a0b3956e2a7ec4d2a10ab2
parentb52c7273f489f2b91b8113fe89c61b51c3962a10 (diff)
downloadmpv-708ca05cc69468fdb4b83f80bb7b85a14ee5dd37.tar.bz2
mpv-708ca05cc69468fdb4b83f80bb7b85a14ee5dd37.tar.xz
vo_opengl: fix wrong comments
The previous commit was actually incorrect, and the change had absolutely no effect. The two formats are (fortunately) the same. I'm probably too tired.
-rw-r--r--video/out/gl_video.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/video/out/gl_video.c b/video/out/gl_video.c
index a3f267a2eb..c66021ee76 100644
--- a/video/out/gl_video.c
+++ b/video/out/gl_video.c
@@ -167,10 +167,10 @@ struct gl_video {
uint32_t image_w, image_h;
uint32_t image_dw, image_dh;
- uint32_t image_format; // "real" input format
+ uint32_t image_format;
int texture_w, texture_h;
- struct mp_imgfmt_desc image_desc; // input format for shader filter chain
+ struct mp_imgfmt_desc image_desc;
bool is_yuv, is_rgb, is_packed_yuv;
bool is_linear_rgb;