asahi: Advertise dual-source blending
authorAlyssa Rosenzweig <alyssa@rosenzweig.io>
Sun, 26 Feb 2023 22:26:34 +0000 (17:26 -0500)
committerMarge Bot <emma+marge@anholt.net>
Sun, 5 Mar 2023 07:38:36 +0000 (07:38 +0000)
This is handled entirely in common code.

Signed-off-by: Alyssa Rosenzweig <alyssa@rosenzweig.io>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21545>

docs/features.txt
src/asahi/lib/agx_nir_lower_tilebuffer.c
src/gallium/drivers/asahi/agx_pipe.c

index f947251..3e56e6b 100644 (file)
@@ -99,7 +99,7 @@ GL 3.2, GLSL 1.50 --- all DONE: freedreno, i965, nv50, nvc0, r600, radeonsi, llv
 
 GL 3.3, GLSL 3.30 --- all DONE: freedreno, i965, nv50, nvc0, r600, radeonsi, llvmpipe, softpipe, virgl, zink, d3d12
 
-  GL_ARB_blend_func_extended                            DONE (freedreno/a3xx, freedreno/a6xx, panfrost, lima)
+  GL_ARB_blend_func_extended                            DONE (freedreno/a3xx, freedreno/a6xx, panfrost, lima, asahi)
   GL_ARB_explicit_attrib_location                       DONE (all drivers that support GLSL)
   GL_ARB_occlusion_query2                               DONE (v3d, panfrost, asahi)
   GL_ARB_sampler_objects                                DONE (all drivers)
index 43a295b..ea6ed24 100644 (file)
@@ -29,7 +29,7 @@ tib_filter(const nir_instr *instr, UNUSED const void *_)
       return false;
 
    nir_io_semantics sem = nir_intrinsic_io_semantics(intr);
-   assert(sem.dual_source_blend_index == 0 && "todo: dual source blending");
+   assert(sem.dual_source_blend_index == 0 && "dual source blending lowered");
    return (sem.location >= FRAG_RESULT_DATA0);
 }
 
index 18961f8..1643ec0 100644 (file)
@@ -1243,9 +1243,8 @@ agx_get_param(struct pipe_screen *pscreen, enum pipe_cap param)
    case PIPE_CAP_FBFETCH:
    case PIPE_CAP_FBFETCH_COHERENT:
       return 8;
-
    case PIPE_CAP_MAX_DUAL_SOURCE_RENDER_TARGETS:
-      return 0;
+      return 1;
 
    case PIPE_CAP_OCCLUSION_QUERY:
    case PIPE_CAP_PRIMITIVE_RESTART: