diff options
author | Jakob Bornecrantz <[email protected]> | 2011-02-17 17:16:14 +0000 |
---|---|---|
committer | Jakob Bornecrantz <[email protected]> | 2011-02-18 14:46:48 +0000 |
commit | e0481cac7d57757d75a39763a1dd36b915979bb4 (patch) | |
tree | b0142adb04c1e610f7588918ced8c987ea29f6e0 /src/gallium/drivers/svga | |
parent | 912ad8874200c0a89bd23663dc0de378f6691140 (diff) |
svga: Disable surface cache for textures
Signed-off-by: Jakob Bornecrantz <[email protected]>
Diffstat (limited to 'src/gallium/drivers/svga')
-rw-r--r-- | src/gallium/drivers/svga/svga_resource_texture.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/drivers/svga/svga_resource_texture.c b/src/gallium/drivers/svga/svga_resource_texture.c index 3c6176a5e86..3bb6ecf81f0 100644 --- a/src/gallium/drivers/svga/svga_resource_texture.c +++ b/src/gallium/drivers/svga/svga_resource_texture.c @@ -521,7 +521,8 @@ svga_texture_create(struct pipe_screen *screen, tex->key.numFaces = 1; } - tex->key.cachable = 1; + /* XXX: Disabled for now */ + tex->key.cachable = 0; if (template->bind & PIPE_BIND_SAMPLER_VIEW) tex->key.flags |= SVGA3D_SURFACE_HINT_TEXTURE; |