i965: Remove legacy clip plane handling from geometry shaders.
authorKenneth Graunke <kenneth@whitecape.org>
Thu, 27 Aug 2015 21:04:40 +0000 (14:04 -0700)
committerKenneth Graunke <kenneth@whitecape.org>
Fri, 4 Sep 2015 05:31:03 +0000 (22:31 -0700)
We only support geometry shaders in core profiles, where gl_ClipVertex
doesn't exist.  Presumably the even older behavior of clipping to
gl_Position isn't supported either.  In fact, GLSL 1.50 page 76 claims:

"The shader must also set all values in gl_ClipDistance that have been
 enabled via the OpenGL API, or results are undefined."

So we don't need to handle legacy clipping in geometry shaders.  I think
Paul added this back when we were considering supporting the old
GL_ARB_geometry_shader4 extension.

This removes a non-orthagonal state dependency on GS compilation.

Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Chris Forbes <chrisf@ijw.co.nz>
src/mesa/drivers/dri/i965/brw_context.h
src/mesa/drivers/dri/i965/brw_gs.c
src/mesa/drivers/dri/i965/brw_vs.c

index 02e7bb4f8e7ba100e22287439c6e5de9a8ed172d..41ba7696d405e5c6b5b5455d4c3f752ed0bde89d 100644 (file)
@@ -2057,11 +2057,6 @@ void gen8_hiz_exec(struct brw_context *brw, struct intel_mipmap_tree *mt,
 
 uint32_t get_hw_prim_for_gl_prim(int mode);
 
-void
-brw_setup_vue_key_clip_info(struct brw_context *brw,
-                            struct brw_vue_prog_key *key,
-                            bool program_uses_clip_distance);
-
 void
 gen6_upload_push_constants(struct brw_context *brw,
                            const struct gl_program *prog,
index 5c0d9230162819eb6ac8f848076d3c496399898a..f1da63543c4bbf94b59af86212f5925617ce654a 100644 (file)
@@ -121,15 +121,6 @@ brw_codegen_gs_prog(struct brw_context *brw,
 
    GLbitfield64 outputs_written = gp->program.Base.OutputsWritten;
 
-   /* In order for legacy clipping to work, we need to populate the clip
-    * distance varying slots whenever clipping is enabled, even if the vertex
-    * shader doesn't write to gl_ClipDistance.
-    */
-   if (c.key.base.userclip_active) {
-      outputs_written |= BITFIELD64_BIT(VARYING_SLOT_CLIP_DIST0);
-      outputs_written |= BITFIELD64_BIT(VARYING_SLOT_CLIP_DIST1);
-   }
-
    brw_compute_vue_map(brw->intelScreen->devinfo,
                        &c.prog_data.base.vue_map, outputs_written);
 
@@ -310,8 +301,6 @@ brw_gs_populate_key(struct brw_context *brw,
    memset(key, 0, sizeof(*key));
 
    key->base.program_string_id = gp->id;
-   brw_setup_vue_key_clip_info(brw, &key->base,
-                               gp->program.Base.UsesClipDistanceOut);
 
    /* _NEW_TEXTURE */
    brw_populate_sampler_prog_key_data(ctx, prog, stage_state->sampler_count,
index c53cb49b6125a00d82b3f7339b4b578d5ea96a06..211929a523596cdd8f04ee968f0a744d6774cbfa 100644 (file)
@@ -279,21 +279,6 @@ brw_vs_debug_recompile(struct brw_context *brw,
    }
 }
 
-
-void
-brw_setup_vue_key_clip_info(struct brw_context *brw,
-                            struct brw_vue_prog_key *key,
-                            bool program_uses_clip_distance)
-{
-   struct gl_context *ctx = &brw->ctx;
-
-   key->userclip_active = (ctx->Transform.ClipPlanesEnabled != 0);
-   if (key->userclip_active && !program_uses_clip_distance) {
-      key->nr_userclip_plane_consts
-         = _mesa_logbase2(ctx->Transform.ClipPlanesEnabled) + 1;
-   }
-}
-
 static bool
 brw_vs_state_dirty(struct brw_context *brw)
 {
@@ -325,8 +310,14 @@ brw_vs_populate_key(struct brw_context *brw,
     * the inputs it asks for, whether they are varying or not.
     */
    key->base.program_string_id = vp->id;
-   brw_setup_vue_key_clip_info(brw, &key->base,
-                               vp->program.Base.UsesClipDistanceOut);
+
+   if (ctx->Transform.ClipPlanesEnabled != 0) {
+      key->base.userclip_active = true;
+      if (!vp->program.Base.UsesClipDistanceOut) {
+         key->base.nr_userclip_plane_consts =
+            _mesa_logbase2(ctx->Transform.ClipPlanesEnabled) + 1;
+      }
+   }
 
    /* _NEW_POLYGON */
    if (brw->gen < 6) {