summaryrefslogtreecommitdiffstats
path: root/video/out/opengl/ra.h
diff options
context:
space:
mode:
Diffstat (limited to 'video/out/opengl/ra.h')
-rw-r--r--video/out/opengl/ra.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/video/out/opengl/ra.h b/video/out/opengl/ra.h
index 0f1f98c6f0..81078da41f 100644
--- a/video/out/opengl/ra.h
+++ b/video/out/opengl/ra.h
@@ -10,6 +10,7 @@ struct ra {
int glsl_version; // GLSL version (e.g. 300 => 3.0)
bool glsl_es; // use ES dialect
+ bool glsl_vulkan; // use vulkan dialect
struct mp_log *log;
@@ -240,7 +241,8 @@ struct ra_renderpass_params {
// --- type==RA_RENDERPASS_TYPE_RASTER only
- // Describes the format of the vertex data.
+ // Describes the format of the vertex data. When using ra.glsl_vulkan,
+ // the order of this array must match the vertex attribute locations.
struct ra_renderpass_input *vertex_attribs;
int num_vertex_attribs;
int vertex_stride;