From 44cd9aeeec58ef2c271cc7d5b89ea5eda906e78e Mon Sep 17 00:00:00 2001 From: Samuel Pitoiset Date: Mon, 21 Aug 2017 22:22:28 +0200 Subject: [PATCH] mesa: only expose glImportMemoryFdEXT if the ext is supported MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 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 --- src/mesa/main/externalobjects.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/mesa/main/externalobjects.c b/src/mesa/main/externalobjects.c index 098a099..127b203 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); -- 2.7.4