etnaviv: use a better name for FE_VERTEX_STREAM_UNK14680
authorChristian Gmeiner <christian.gmeiner@gmail.com>
Fri, 3 Jan 2020 09:27:00 +0000 (10:27 +0100)
committerChristian Gmeiner <christian.gmeiner@gmail.com>
Sat, 4 Jan 2020 13:15:36 +0000 (14:15 +0100)
Signed-off-by: Christian Gmeiner <christian.gmeiner@gmail.com>
src/gallium/drivers/etnaviv/etnaviv_emit.c
src/gallium/drivers/etnaviv/etnaviv_internal.h

index 25431477a7a2e35529cdd78c6a698b0e0d7fd67b..4982cdb907496b4dd7dd3c0d0a8e934a27d9ac98 100644 (file)
@@ -329,7 +329,7 @@ etna_emit_state(struct etna_context *ctx)
          }
          for (int x = 0; x < ctx->vertex_buffer.count; ++x) {
             if (ctx->vertex_buffer.cvb[x].FE_VERTEX_STREAM_BASE_ADDR.bo) {
-               /*14680*/ EMIT_STATE(NFE_VERTEX_STREAMS_VERTEX_DIVISOR(x), ctx->vertex_buffer.cvb[x].FE_VERTEX_STREAM_UNK14680);
+               /*14680*/ EMIT_STATE(NFE_VERTEX_STREAMS_VERTEX_DIVISOR(x), ctx->vertex_buffer.cvb[x].FE_VERTEX_STREAM_VERTEX_DIVISOR);
             }
          }
       } else if(ctx->specs.stream_count > 1) { /* hw w/ multiple vertex streams */
index fcad76513d91af713575f2cc1f14c9a142efc90f..25f6a38ab987ac663190997d32808c61920dc334 100644 (file)
@@ -233,7 +233,7 @@ struct compiled_vertex_elements_state {
 /* Compiled context->set_vertex_buffer result */
 struct compiled_set_vertex_buffer {
    uint32_t FE_VERTEX_STREAM_CONTROL;
-   uint32_t FE_VERTEX_STREAM_UNK14680;
+   uint32_t FE_VERTEX_STREAM_VERTEX_DIVISOR;
    struct etna_reloc FE_VERTEX_STREAM_BASE_ADDR;
 };