summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorZack Rusin <[email protected]>2013-03-29 04:52:29 -0700
committerZack Rusin <[email protected]>2013-04-03 10:16:25 -0700
commit822c21c7763afde4d4a94af3935b4b629d4eb34a (patch)
tree7ffed37317ef0f91970ceeafcf0501939eb3b85c /src
parentd8543bd7528de05e5ce3ac407838e7500428a93d (diff)
draw/so: maintain an exact number of written vertices
It's quite helpful during the rendering when we know exactly the count of the vertices available in the buffer. Signed-off-by: Zack Rusin <[email protected]> Reviewed-by: José Fonseca <[email protected]>
Diffstat (limited to 'src')
-rw-r--r--src/gallium/auxiliary/draw/draw_context.h1
-rw-r--r--src/gallium/auxiliary/draw/draw_pt.c35
-rw-r--r--src/gallium/auxiliary/draw/draw_pt_so_emit.c4
3 files changed, 33 insertions, 7 deletions
diff --git a/src/gallium/auxiliary/draw/draw_context.h b/src/gallium/auxiliary/draw/draw_context.h
index 369f6c80fa0..b333457775c 100644
--- a/src/gallium/auxiliary/draw/draw_context.h
+++ b/src/gallium/auxiliary/draw/draw_context.h
@@ -60,6 +60,7 @@ struct draw_so_target {
struct pipe_stream_output_target target;
void *mapping;
int internal_offset;
+ int emitted_vertices;
};
struct draw_context *draw_create( struct pipe_context *pipe );
diff --git a/src/gallium/auxiliary/draw/draw_pt.c b/src/gallium/auxiliary/draw/draw_pt.c
index 50b9efab7ea..853bd6716e6 100644
--- a/src/gallium/auxiliary/draw/draw_pt.c
+++ b/src/gallium/auxiliary/draw/draw_pt.c
@@ -451,6 +451,28 @@ draw_arrays_instanced(struct draw_context *draw,
draw_vbo(draw, &info);
}
+/**
+ * Resolve true values within pipe_draw_info.
+ * If we're rendering from transform feedback/stream output
+ * buffers both the count and max_index need to be computed
+ * from the attached stream output target.
+ */
+static void
+resolve_draw_info(const struct pipe_draw_info *raw_info,
+ struct pipe_draw_info *info)
+{
+ memcpy(info, raw_info, sizeof(struct pipe_draw_info));
+
+ if (raw_info->count_from_stream_output) {
+ struct draw_so_target *target =
+ (struct draw_so_target *)info->count_from_stream_output;
+ info->count = target->emitted_vertices;
+
+ /* Stream output draw can not be indexed */
+ debug_assert(!info->indexed);
+ info->max_index = info->count - 1;
+ }
+}
/**
* Draw vertex arrays.
@@ -465,9 +487,16 @@ draw_vbo(struct draw_context *draw,
unsigned instance;
unsigned index_limit;
unsigned count;
+ struct pipe_draw_info resolved_info;
+
+ resolve_draw_info(info, &resolved_info);
+ info = &resolved_info;
+
assert(info->instance_count > 0);
if (info->indexed)
assert(draw->pt.user.elts);
+
+ count = info->count;
draw->pt.user.eltBias = info->index_bias;
draw->pt.user.min_index = info->min_index;
@@ -518,12 +547,6 @@ draw_vbo(struct draw_context *draw,
draw->pt.max_index = index_limit - 1;
- count = info->count;
- if (count == 0) {
- if (info->count_from_stream_output)
- count = draw->pt.max_index + 1;
- }
-
/*
* TODO: We could use draw->pt.max_index to further narrow
* the min_index/max_index hints given by the state tracker.
diff --git a/src/gallium/auxiliary/draw/draw_pt_so_emit.c b/src/gallium/auxiliary/draw/draw_pt_so_emit.c
index 25584a9b62e..ae071a678b6 100644
--- a/src/gallium/auxiliary/draw/draw_pt_so_emit.c
+++ b/src/gallium/auxiliary/draw/draw_pt_so_emit.c
@@ -174,8 +174,10 @@ static void so_emit_prim(struct pt_so_emit *so,
else
memcpy(buffer, &input[idx][start_comp], num_comps * sizeof(float));
}
- for (ob = 0; ob < draw->so.num_targets; ++ob)
+ for (ob = 0; ob < draw->so.num_targets; ++ob) {
draw->so.targets[ob]->internal_offset += state->stride[ob] * sizeof(float);
+ draw->so.targets[ob]->emitted_vertices += 1;
+ }
}
so->emitted_vertices += num_vertices;
++so->emitted_primitives;