diff options
author | Józef Kucia <[email protected]> | 2019-03-12 16:11:41 +0100 |
---|---|---|
committer | Tapani Pälli <[email protected]> | 2019-03-22 07:37:14 +0200 |
commit | 1d996ef7144f97ce948fb8e8ec5792898bea56f6 (patch) | |
tree | fc099c3d6d5e9f57cf08a88d72df01646e60b25d /src/mesa/main/get.c | |
parent | 66c100a8d6df74e3e4c0b24a618b2c116fc6bed1 (diff) |
mesa: Fix GL_NUM_DEVICE_UUIDS_EXT
Cc: [email protected]
Reviewed-by: Tapani Pälli <[email protected]>
Diffstat (limited to 'src/mesa/main/get.c')
-rw-r--r-- | src/mesa/main/get.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/main/get.c b/src/mesa/main/get.c index ee77c45d03c..efc9c11f79d 100644 --- a/src/mesa/main/get.c +++ b/src/mesa/main/get.c @@ -906,6 +906,9 @@ find_custom_value(struct gl_context *ctx, const struct value_desc *d, union valu break; /* GL_EXT_external_objects */ + case GL_NUM_DEVICE_UUIDS_EXT: + v->value_int = 1; + break; case GL_DRIVER_UUID_EXT: _mesa_get_driver_uuid(ctx, v->value_int_4); break; |