mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 08:58:02 +02:00
fix from i965 driver for compressed textures on texman
This commit is contained in:
parent
f9f3de8c31
commit
c745394242
1 changed files with 1 additions and 1 deletions
|
|
@ -73,7 +73,7 @@ struct intel_mipmap_tree *intel_miptree_create( struct intel_context *intel,
|
|||
mt->width0 = width0;
|
||||
mt->height0 = height0;
|
||||
mt->depth0 = depth0;
|
||||
mt->cpp = cpp;
|
||||
mt->cpp = compressed ? 2 : cpp;
|
||||
mt->compressed = compressed;
|
||||
mt->refcount = 1;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue