i915g: initial support for SEMANTIC_FACE.
authorStéphane Marchesin <marcheu@chromium.org>
Mon, 27 Jun 2011 09:04:38 +0000 (02:04 -0700)
committerStéphane Marchesin <marcheu@chromium.org>
Mon, 27 Jun 2011 09:06:00 +0000 (02:06 -0700)
Doesn't work yet, see TODO.

src/gallium/drivers/i915/i915_fpc.h
src/gallium/drivers/i915/i915_fpc_translate.c
src/gallium/drivers/i915/i915_state_derived.c

index 8502dc09c9302578319e90d8356548ccbe5ff407..e298e78c6bc00db7f17cdcb59c3eb7786442b1bd 100644 (file)
@@ -37,8 +37,9 @@
 
 #define I915_PROGRAM_SIZE 192
 
-/* Use that index for pos routing, must be >= I915_TEX_UNITS */
-#define I915_SEMANTIC_POS 10
+/* Use those indices for pos/face routing, must be >= I915_TEX_UNITS */
+#define I915_SEMANTIC_POS  10
+#define I915_SEMANTIC_FACE 11
 
 
 /**
index 6948fc368f3c6ea7da48c169c8e522a589cf850a..f39b020537701bf5e83013ef2871d3e57ff2549c 100644 (file)
@@ -212,6 +212,15 @@ src_vector(struct i915_fp_compile *p,
             src = i915_emit_decl(p, REG_TYPE_T, T_TEX0 + real_tex_unit, D0_CHANNEL_ALL);
             break;
          }
+      case TGSI_SEMANTIC_FACE:
+         {
+            /* for back/front faces */
+            /* XXX also emit something from 0,1 to -1,1 */
+            int real_tex_unit = get_mapping(fs, I915_SEMANTIC_FACE);
+            printf("semantic face fpc at %d\n",real_tex_unit);
+            src = i915_emit_decl(p, REG_TYPE_T, T_TEX0 + real_tex_unit, D0_CHANNEL_X);
+            break;
+         }
       default:
          i915_program_error(p, "Bad source->Index");
          return 0;
index 72b7571d7720c9d91c7cba9d899c3f006b1d8eaa..dd4fd185266077d4b3c04e8396556206ee5da039 100644 (file)
@@ -59,12 +59,12 @@ static void calculate_vertex_layout(struct i915_context *i915)
    const struct i915_fragment_shader *fs = i915->fs;
    const enum interp_mode colorInterp = i915->rasterizer->color_interp;
    struct vertex_info vinfo;
-   boolean texCoords[I915_TEX_UNITS], colors[2], fog, needW;
+   boolean texCoords[I915_TEX_UNITS], colors[2], fog, needW, face;
    uint i;
    int src;
 
    memset(texCoords, 0, sizeof(texCoords));
-   colors[0] = colors[1] = fog = needW = FALSE;
+   colors[0] = colors[1] = fog = needW = face = FALSE;
    memset(&vinfo, 0, sizeof(vinfo));
 
    /* Determine which fragment program inputs are needed.  Setup HW vertex
@@ -85,7 +85,6 @@ static void calculate_vertex_layout(struct i915_context *i915)
       case TGSI_SEMANTIC_GENERIC:
          {
             /* texcoords/varyings/other generic */
-            /* XXX handle back/front face and point size */
             uint unit = fs->info.input_semantic_index[i];
 
             texCoords[find_mapping(fs, unit)] = TRUE;
@@ -95,7 +94,11 @@ static void calculate_vertex_layout(struct i915_context *i915)
       case TGSI_SEMANTIC_FOG:
          fog = TRUE;
          break;
+      case TGSI_SEMANTIC_FACE:
+         face = TRUE;
+         break;
       default:
+         debug_printf("Unknown input type %d\n", fs->info.input_semantic_name[i]);
          assert(0);
       }
    }
@@ -152,6 +155,16 @@ static void calculate_vertex_layout(struct i915_context *i915)
       vinfo.hwfmt[1] |= hwtc << (i * 4);
    }
 
+   /* front/back face */
+   if (face) {
+      uint slot = find_mapping(fs, I915_SEMANTIC_FACE);         
+      debug_printf("Front/back face is broken\n");
+      src = draw_find_shader_output(i915->draw, TGSI_SEMANTIC_FACE, 0);
+      /* really here it's EMIT_1F_FACE */
+      draw_emit_vertex_attr(&vinfo, EMIT_1F, INTERP_CONSTANT, src);
+      vinfo.hwfmt[1] |= TEXCOORDFMT_1D << (slot * 4);
+   }
+
    draw_compute_vertex_size(&vinfo);
 
    if (memcmp(&i915->current.vertex_info, &vinfo, sizeof(vinfo))) {