386144da3f
- fix more bugs on 965
26 lines
835 B
Diff
26 lines
835 B
Diff
From 27e06a52342b94b4fb1d60a57c3bdaa2b30607cf Mon Sep 17 00:00:00 2001
|
|
From: Dave Airlie <airlied@panoply-rh.(none)>
|
|
Date: Fri, 18 Apr 2008 15:37:54 +1000
|
|
Subject: [PATCH] i965: fixup depth buffer check
|
|
|
|
---
|
|
src/mesa/drivers/dri/i965/brw_misc_state.c | 2 +-
|
|
1 files changed, 1 insertions(+), 1 deletions(-)
|
|
|
|
diff --git a/src/mesa/drivers/dri/i965/brw_misc_state.c b/src/mesa/drivers/dri/i965/brw_misc_state.c
|
|
index ec0bd6b..26ec797 100644
|
|
--- a/src/mesa/drivers/dri/i965/brw_misc_state.c
|
|
+++ b/src/mesa/drivers/dri/i965/brw_misc_state.c
|
|
@@ -183,7 +183,7 @@ static int prepare_depthbuffer(struct brw_context *brw)
|
|
{
|
|
struct intel_region *region = brw->state.depth_region;
|
|
|
|
- if (region->buffer)
|
|
+ if (!region || !region->buffer)
|
|
return 0;
|
|
return dri_bufmgr_check_aperture_space(region->buffer);
|
|
}
|
|
--
|
|
1.5.4.5
|
|
|