summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-03-13 11:53:54 +0100
committerwm4 <wm4@nowhere>2015-03-13 11:53:54 +0100
commitb2ad2e2fd1a709039a6f5003a7621929b8f8106a (patch)
tree484e4985bb971e9777dc944a112cc59a35d12763
parentacbac01a73e22ba1b0aa48be191f72f988133edd (diff)
downloadmpv-b2ad2e2fd1a709039a6f5003a7621929b8f8106a.tar.bz2
mpv-b2ad2e2fd1a709039a6f5003a7621929b8f8106a.tar.xz
vo_opengl: minor fix to a comment
-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 6b4c22fe37..1f62de5687 100644
--- a/video/out/gl_video.c
+++ b/video/out/gl_video.c
@@ -832,9 +832,9 @@ static void finish_pass_direct(struct gl_video *p, GLint fbo, int vp_w, int vp_h
// FBO, if the required parameters have changed
// w, h: required FBO target dimension, and also defines the target rectangle
// used for rasterization
-// tex: the texture ID to load the result back into
+// tex: the texture unit to load the result back into
// flags: 0 or combination of FBOTEX_FUZZY_W/FBOTEX_FUZZY_H (setting the fuzzy
-// flags allows the FBO to be larger than the target)
+// flags allows the FBO to be larger than the w/h parameters)
static void finish_pass_fbo(struct gl_video *p, struct fbotex *dst_fbo,
int w, int h, int tex, int flags)
{