From: Ian Romanick Date: Tue, 7 Aug 2012 19:05:35 +0000 (-0700) Subject: intel: In the i915 driver, the chipset cannot be i965 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2b636243265f0f09b7fd8d42046119222a63cad4;p=mesa.git intel: In the i915 driver, the chipset cannot be i965 In the i965 dirver, the chipset must be i965. Signed-off-by: Ian Romanick Reviewed-by: Kenneth Graunke Reviewed-by: Eric Anholt --- diff --git a/src/mesa/drivers/dri/intel/intel_screen.c b/src/mesa/drivers/dri/intel/intel_screen.c index f3592af621a..cdae702adf5 100644 --- a/src/mesa/drivers/dri/intel/intel_screen.c +++ b/src/mesa/drivers/dri/intel/intel_screen.c @@ -733,20 +733,17 @@ intelCreateContext(gl_api api, #ifdef I915 if (IS_9XX(intelScreen->deviceID)) { - if (!IS_965(intelScreen->deviceID)) { - success = i915CreateContext(api, mesaVis, driContextPriv, - sharedContextPrivate); - } + success = i915CreateContext(api, mesaVis, driContextPriv, + sharedContextPrivate); } else { intelScreen->no_vbo = true; success = i830CreateContext(mesaVis, driContextPriv, sharedContextPrivate); } #else - if (IS_965(intelScreen->deviceID)) - success = brwCreateContext(api, mesaVis, - driContextPriv, - sharedContextPrivate); + success = brwCreateContext(api, mesaVis, + driContextPriv, + sharedContextPrivate); #endif if (success) {