diff options
author | Zhenyu Wang <[email protected]> | 2010-09-17 16:26:27 +0800 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2010-09-28 18:35:26 -0700 |
commit | 11215cd5357ff372610636dfcb20908220613f2f (patch) | |
tree | 999bf8b676776452f68731a38f1decba1b08c5f0 | |
parent | 6831cf67d146ad332bab573658d9945748de9545 (diff) |
i965: only allow SIMD8 kernel on sandybridge now
Until we fixed SIMD16 kernel, force to SIMD8 on sandybridge now.
(cherry picked from commit c58bf2cee5b0f14a585089084fec7767f33887a7)
-rw-r--r-- | src/mesa/drivers/dri/intel/intel_context.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/intel/intel_context.c b/src/mesa/drivers/dri/intel/intel_context.c index 08069d71dd1..5ae3e4bca28 100644 --- a/src/mesa/drivers/dri/intel/intel_context.c +++ b/src/mesa/drivers/dri/intel/intel_context.c @@ -786,6 +786,11 @@ intelInitContext(struct intel_context *intel, if (INTEL_DEBUG & DEBUG_BUFMGR) dri_bufmgr_set_debug(intel->bufmgr, GL_TRUE); + /* XXX force SIMD8 kernel for Sandybridge before we fixed + SIMD16 interpolation. */ + if (intel->gen == 6) + INTEL_DEBUG |= DEBUG_GLSL_FORCE; + intel->batch = intel_batchbuffer_alloc(intel); intel_fbo_init(intel); |