i965: Initialize the intel_context::bufmgr pointer earlier.
authorKenneth Graunke <kenneth@whitecape.org>
Thu, 1 Aug 2013 22:11:39 +0000 (15:11 -0700)
committerKenneth Graunke <kenneth@whitecape.org>
Tue, 6 Aug 2013 21:41:37 +0000 (14:41 -0700)
commitc047ad000b24bdd5edb3e59f59738104e0fb42bd
tree705ec6d39f141e6be1a07b058b97af2590623e4f
parent263ebe1a71b3b8ad581484540b1d4c3110e9202a
i965: Initialize the intel_context::bufmgr pointer earlier.

This prevents a crash in a future patch.

_mesa_initialize_context() creates a default transform feedback object
by calling the NewTransformFeedbackObject() driver hook.  Eventually,
we'll want to subclass that and allocate a buffer object.  This means
passing brw->bufmgr to drm_intel_alloc_bo(), and crashing if it isn't
initialized yet.

The buffer manager is actually already initialized; we just hadn't
copied the pointer from intel_screen to intel_context quite early
enough.

Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Paul Berry <stereotype441@gmail.com>
src/mesa/drivers/dri/i965/intel_context.c