summaryrefslogtreecommitdiffstats
path: root/video/out/gl_common.h
diff options
context:
space:
mode:
authorStefano Pigozzi <stefano.pigozzi@gmail.com>2013-12-02 21:17:26 +0100
committerStefano Pigozzi <stefano.pigozzi@gmail.com>2013-12-02 21:26:17 +0100
commitca956af446387f409f51160c1d2c674f70788bda (patch)
treef902d17aaf883211d58c24b1a050a5a7eaaa9c08 /video/out/gl_common.h
parent14d92a4685417610e63307926a799cd5c43b1940 (diff)
downloadmpv-ca956af446387f409f51160c1d2c674f70788bda.tar.bz2
mpv-ca956af446387f409f51160c1d2c674f70788bda.tar.xz
gl_video: change internal API for hwdec mp_image download
Previous API worked under the assumption that download_image is always called after map_image. In practice this is true, but it's better to have a much generic API that doesn't depend on the order in which the functions are called.
Diffstat (limited to 'video/out/gl_common.h')
-rw-r--r--video/out/gl_common.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/video/out/gl_common.h b/video/out/gl_common.h
index 64490b7098..f9d4685a6b 100644
--- a/video/out/gl_common.h
+++ b/video/out/gl_common.h
@@ -203,7 +203,8 @@ struct gl_hwdec_driver {
// are not needed anymore.
void (*unmap_image)(struct gl_hwdec *hw);
// Return a mp_image downloaded from the GPU (optional)
- struct mp_image *(*download_image)(struct gl_hwdec *hw);
+ struct mp_image *(*download_image)(struct gl_hwdec *hw,
+ struct mp_image *hw_image);
void (*destroy)(struct gl_hwdec *hw);
};