[Mesa-dev] [PATCH 1/3] mesa: Add _mesa_has_compute_shaders

Kenneth Graunke kenneth at whitecape.org
Tue Feb 17 22:02:44 PST 2015


On Saturday, February 14, 2015 12:53:42 PM Jordan Justen wrote:
> Signed-off-by: Jordan Justen <jordan.l.justen at intel.com>
> ---
>  src/mesa/main/context.h | 11 +++++++++++
>  1 file changed, 11 insertions(+)
> 
> diff --git a/src/mesa/main/context.h b/src/mesa/main/context.h
> index d902ea7..34799ba 100644
> --- a/src/mesa/main/context.h
> +++ b/src/mesa/main/context.h
> @@ -326,6 +326,17 @@ _mesa_has_geometry_shaders(const struct gl_context *ctx)
>  }
>  
>  
> +/**
> + * Checks if the context supports compute shaders.
> + */
> +static inline GLboolean
> +_mesa_has_compute_shaders(const struct gl_context *ctx)
> +{
> +   return (ctx->API == API_OPENGL_CORE && ctx->Extensions.ARB_compute_shader) ||
> +      (ctx->API == API_OPENGLES2 && ctx->Version >= 31);
> +}
> +
> +
>  #ifdef __cplusplus
>  }
>  #endif
> 

Reviewed-by: Kenneth Graunke <kenneth at whitecape.org>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: This is a digitally signed message part.
URL: <http://lists.freedesktop.org/archives/mesa-dev/attachments/20150217/81517061/attachment.sig>


More information about the mesa-dev mailing list