From: Zack Rusin Date: Wed, 19 Sep 2007 19:29:17 +0000 (-0400) Subject: Fix a really stupid mistake that Michel hit. Return proper hash. X-Git-Tag: 062012170305~17580^2~390^2~4082 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a0e948f3aaadf56ab206a6b3e597825f2085f6d1;p=profile%2Fivi%2Fmesa.git Fix a really stupid mistake that Michel hit. Return proper hash. --- diff --git a/src/mesa/pipe/cso_cache/cso_cache.c b/src/mesa/pipe/cso_cache/cso_cache.c index e87733c..71f0d08 100644 --- a/src/mesa/pipe/cso_cache/cso_cache.c +++ b/src/mesa/pipe/cso_cache/cso_cache.c @@ -74,16 +74,22 @@ static struct cso_hash *_cso_hash_for_type(struct cso_cache *sc, enum cso_cache_ switch(type) { case CSO_BLEND: hash = sc->blend_hash; + break; case CSO_SAMPLER: hash = sc->sampler_hash; + break; case CSO_DEPTH_STENCIL: hash = sc->depth_stencil_hash; + break; case CSO_RASTERIZER: hash = sc->rasterizer_hash; + break; case CSO_FRAGMENT_SHADER: hash = sc->fs_hash; + break; case CSO_VERTEX_SHADER: hash = sc->vs_hash; + break; } return hash;