From: Samuel Pitoiset Date: Mon, 21 Aug 2017 20:22:28 +0000 (+0200) Subject: mesa: only expose glImportMemoryFdEXT if the ext is supported X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=44cd9aeeec58ef2c271cc7d5b89ea5eda906e78e;p=mesa.git mesa: only expose glImportMemoryFdEXT if the ext is supported From the EXT_external_objects_fd spec: "If the GL_EXT_memory_object_fd string is reported, the following commands are added: void ImportMemoryFdEXT(uint memory, uint64 size, enum handleType, int fd);" Signed-off-by: Samuel Pitoiset Reviewed-by: Marek Olšák --- diff --git a/src/mesa/main/externalobjects.c b/src/mesa/main/externalobjects.c index 098a0999208..127b2039c64 100644 --- a/src/mesa/main/externalobjects.c +++ b/src/mesa/main/externalobjects.c @@ -560,6 +560,12 @@ _mesa_ImportMemoryFdEXT(GLuint memory, { GET_CURRENT_CONTEXT(ctx); + if (!ctx->Extensions.EXT_memory_object_fd) { + _mesa_error(ctx, GL_INVALID_OPERATION, + "glImportMemoryFdEXT(unsupported)"); + return; + } + if (handleType != GL_HANDLE_TYPE_OPAQUE_FD_EXT) { _mesa_error(ctx, GL_INVALID_VALUE, "glImportMemoryFdEXT(handleType=%u)", handleType);