mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 05:18:08 +02:00
st/nine: Fix NineBaseTexture9_PreLoad
It wasn't uploading the texture when the lod had changed. Signed-off-by: Axel Davy <axel.davy@ens.fr>
This commit is contained in:
parent
b45fa97a22
commit
ec411d9b74
1 changed files with 1 additions and 1 deletions
|
|
@ -573,7 +573,7 @@ NineBaseTexture9_PreLoad( struct NineBaseTexture9 *This )
|
|||
{
|
||||
DBG("This=%p\n", This);
|
||||
|
||||
if (This->managed.dirty && This->base.pool == D3DPOOL_MANAGED)
|
||||
if (This->base.pool == D3DPOOL_MANAGED)
|
||||
NineBaseTexture9_UploadSelf(This);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue