From ea7646dc13306e96188e7a7fd76e8a926bede13d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Marek=20Ol=C5=A1=C3=A1k?= Date: Thu, 7 Feb 2019 00:06:28 -0500 Subject: [PATCH] gallium: add PIPE_CAP_GRAPHICS Reviewed-by: Alex Deucher Reviewed-by: Pierre-Eric Pelloux-Prayer --- src/gallium/auxiliary/util/u_screen.c | 1 + src/gallium/docs/source/screen.rst | 2 ++ src/gallium/include/pipe/p_defines.h | 1 + 3 files changed, 4 insertions(+) diff --git a/src/gallium/auxiliary/util/u_screen.c b/src/gallium/auxiliary/util/u_screen.c index 810ba8d..e6d0706 100644 --- a/src/gallium/auxiliary/util/u_screen.c +++ b/src/gallium/auxiliary/util/u_screen.c @@ -43,6 +43,7 @@ u_pipe_screen_get_param_defaults(struct pipe_screen *pscreen, case PIPE_CAP_POINT_SPRITE: return 0; + case PIPE_CAP_GRAPHICS: case PIPE_CAP_MAX_RENDER_TARGETS: return 1; diff --git a/src/gallium/docs/source/screen.rst b/src/gallium/docs/source/screen.rst index ba7a9d4..a8ff17e 100644 --- a/src/gallium/docs/source/screen.rst +++ b/src/gallium/docs/source/screen.rst @@ -22,6 +22,8 @@ or integer values, use :ref:`get_param`. The integer capabilities: +* ``PIPE_CAP_GRAPHICS``: Whether graphics is supported. If not, contexts can + only be created with PIPE_CONTEXT_COMPUTE_ONLY. * ``PIPE_CAP_NPOT_TEXTURES``: Whether :term:`NPOT` textures may have repeat modes, normalized coordinates, and mipmaps. * ``PIPE_CAP_MAX_DUAL_SOURCE_RENDER_TARGETS``: How many dual-source blend RTs are support. diff --git a/src/gallium/include/pipe/p_defines.h b/src/gallium/include/pipe/p_defines.h index af67d593..c926544 100644 --- a/src/gallium/include/pipe/p_defines.h +++ b/src/gallium/include/pipe/p_defines.h @@ -685,6 +685,7 @@ enum pipe_conservative_raster_mode */ enum pipe_cap { + PIPE_CAP_GRAPHICS, PIPE_CAP_NPOT_TEXTURES, PIPE_CAP_MAX_DUAL_SOURCE_RENDER_TARGETS, PIPE_CAP_ANISOTROPIC_FILTER, -- 2.7.4