gallium: add a new cap PIPE_CAP_GLSL_ZERO_INIT
authorPierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer@amd.com>
Fri, 24 Apr 2020 16:14:40 +0000 (18:14 +0200)
committerPierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer@amd.com>
Tue, 5 May 2020 10:26:02 +0000 (12:26 +0200)
Allows driver to select a zero init mode between the 3 possible values.

Reviewed-by: Marek Olšák <marek.olsak@amd.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4607>

src/gallium/auxiliary/util/u_screen.c
src/gallium/docs/source/screen.rst
src/gallium/drivers/radeonsi/si_get.c
src/gallium/include/pipe/p_defines.h
src/mesa/main/mtypes.h
src/mesa/state_tracker/st_extensions.c

index ae024f0e65033ce9598a109b626018ad242e9d63..a7fb85ca27baba26b79b61b382b8fa003ce7f473 100644 (file)
@@ -345,6 +345,7 @@ u_pipe_screen_get_param_defaults(struct pipe_screen *pscreen,
    case PIPE_CAP_SHADER_SAMPLES_IDENTICAL:
    case PIPE_CAP_TGSI_ATOMINC_WRAP:
    case PIPE_CAP_TGSI_TG4_COMPONENT_IN_SWIZZLE:
+   case PIPE_CAP_GLSL_ZERO_INIT:
       return 0;
 
    case PIPE_CAP_MAX_GS_INVOCATIONS:
index e006ef195681771699e7d925506972f50f50783c..6832b9993572c0913ed5c5a4382c8110e3f647e9 100644 (file)
@@ -579,6 +579,7 @@ The integer capabilities:
 * ``PIPE_CAP_SYSTEM_SVM``: True if all application memory can be shared with the GPU without explicit mapping.
 * ``PIPE_CAP_VIEWPORT_MASK``: Whether ``TGSI_SEMANTIC_VIEWPORT_MASK`` and ``TGSI_PROPERTY_LAYER_VIEWPORT_RELATIVE`` are supported (see GL_NV_viewport_array2).
 * ``PIPE_CAP_MAP_UNSYNCHRONIZED_THREAD_SAFE``: Whether mapping a buffer as unsynchronized from any thread is safe.
+* ``PIPE_CAP_GLSL_ZERO_INIT``: Choose a default zero initialization some glsl variables. If `1`, then all glsl shader variables and gl_FragColor are initialized to zero. If `2`, then shader out variables are not initialized but function out variables are.
 
 .. _pipe_capf:
 
index 9a10a82e0526d8b69fcb64a61a6d3bc08c061a7e..fad46fa09ce0ed0cfe19aec56e742d5990cf3bc0 100644 (file)
@@ -164,6 +164,9 @@ static int si_get_param(struct pipe_screen *pscreen, enum pipe_cap param)
    case PIPE_CAP_MAP_UNSYNCHRONIZED_THREAD_SAFE:
       return 1;
 
+   case PIPE_CAP_GLSL_ZERO_INIT:
+      return 2;
+
    case PIPE_CAP_QUERY_SO_OVERFLOW:
       return !sscreen->use_ngg_streamout;
 
index dd0c7331b693f646d05cb553a1ac93cc088a0cc1..f1524b0cdb7987cc2a7ffc451fba94bcfcf4e123 100644 (file)
@@ -947,6 +947,7 @@ enum pipe_cap
    PIPE_CAP_VIEWPORT_MASK,
    PIPE_CAP_ALPHA_TO_COVERAGE_DITHER_CONTROL,
    PIPE_CAP_MAP_UNSYNCHRONIZED_THREAD_SAFE,
+   PIPE_CAP_GLSL_ZERO_INIT,
 };
 
 /**
index 7046e8adfa3a52e05d45e8c0ec64b46ac9347ebb..2fa06e7a5705467f4f3cedb6f96bdd2506b0efe7 100644 (file)
@@ -3868,9 +3868,13 @@ struct gl_constants
    GLboolean ForceGLSLAbsSqrt;
 
    /**
-    * Types of variable to default initialized to zero.
+    * Types of variable to default initialized to zero. Supported values are:
+    *   - 0: no zero initialization
+    *   - 1: all shader variables and gl_FragColor are initialiazed to 0
+    *   - 2: same as 1, but shader out variables are *not* initialized, while
+    *        function out variables are now initialized.
     */
-   GLuint GLSLZeroInit;
+   GLchar GLSLZeroInit;
 
    /**
     * Treat integer textures using GL_LINEAR filters as GL_NEAREST.
index 2403bd60a8c0cbf24b722c6ecbae674257d89a4b..f13ded7c19d94b988fcbfe85994270b1e58131c7 100644 (file)
@@ -1205,6 +1205,8 @@ void st_init_extensions(struct pipe_screen *screen,
 
    if (options->glsl_zero_init) {
       consts->GLSLZeroInit = 1;
+   } else {
+      consts->GLSLZeroInit = screen->get_param(screen, PIPE_CAP_GLSL_ZERO_INIT);
    }
 
    consts->ForceIntegerTexNearest = options->force_integer_tex_nearest;