i965: Enable ARB_transform_feedback2 on Sandybridge.
authorKenneth Graunke <kenneth@whitecape.org>
Fri, 17 Feb 2017 04:05:39 +0000 (20:05 -0800)
committerKenneth Graunke <kenneth@whitecape.org>
Tue, 21 Feb 2017 20:38:13 +0000 (12:38 -0800)
The only feature over and above ES 3.0 is DrawTransformFeedback().

We already have to do the whole SOL_NUM_PRIMS_WRITTEN counter dance in
order to compute the SVBI value for ResumeTransformFeedback(), at which
point our existing GetTransformFeedbackVertexCount() implementation will
do the trick (though with a stall to CPU map the buffer).

Someday, we could probably implement DrawTransformFeedback() more
efficiently, using the "Load Internal Vertex Count" feature of
3DSTATE_SVB_INDEX and the 3DPRIMITIVE indirect vertex count bit.

Rumor has it this allows people to use WebGL 2.0 on Sandybridge.

Note that we don't need pipelined register writes like Gen7+ because
we use the 3DSTATE_SVB_INDEX command rather than MI_LOAD_REGISTER_MEM.

Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=99842
Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Iago Toral Quiroga <itoral@igalia.com>
src/mesa/drivers/dri/i965/brw_context.c
src/mesa/drivers/dri/i965/intel_extensions.c

index 6a9f1570c31edc492c10fc1c768a534c2e2abc5f..de2f6948b25e988f661869d8ec17ea77a8ab5aa8 100644 (file)
@@ -483,6 +483,8 @@ brw_init_driver_functions(struct brw_context *brw,
       functions->EndTransformFeedback = brw_end_transform_feedback;
       functions->PauseTransformFeedback = brw_pause_transform_feedback;
       functions->ResumeTransformFeedback = brw_resume_transform_feedback;
+      functions->GetTransformFeedbackVertexCount =
+         brw_get_transform_feedback_vertex_count;
    }
 
    if (brw->gen >= 6)
index f1290bf7b4943fec9009830362e0314a8c8d637d..ec7ff02be84fbe77fed63842855fc138edc25f3b 100644 (file)
@@ -158,6 +158,9 @@ intelInitExtensions(struct gl_context *ctx)
       ctx->Extensions.EXT_timer_query = true;
    }
 
+   if (brw->gen == 6)
+      ctx->Extensions.ARB_transform_feedback2 = true;
+
    if (brw->gen >= 6) {
       ctx->Extensions.ARB_blend_func_extended =
          !driQueryOptionb(&brw->optionCache, "disable_blend_func_extended");