diff options
author | Axel Davy <[email protected]> | 2015-02-19 16:18:00 +0100 |
---|---|---|
committer | Axel Davy <[email protected]> | 2015-04-29 08:28:11 +0200 |
commit | e558ce98f2b01e11ff79c29efaea2877121ae04a (patch) | |
tree | 1364f1700df4181d4108a543bbbdc449f8d0adba /src/gallium/state_trackers/nine/surface9.c | |
parent | 35fe920e1ec877d487e5dd33c9aea7e1ec1dbe11 (diff) |
st/nine: Encapsulate variables for MANAGED resource
Signed-off-by: Axel Davy <[email protected]>
Diffstat (limited to 'src/gallium/state_trackers/nine/surface9.c')
-rw-r--r-- | src/gallium/state_trackers/nine/surface9.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/state_trackers/nine/surface9.c b/src/gallium/state_trackers/nine/surface9.c index e202f870720..3a0b4d0c948 100644 --- a/src/gallium/state_trackers/nine/surface9.c +++ b/src/gallium/state_trackers/nine/surface9.c @@ -240,7 +240,7 @@ NineSurface9_MarkContainerDirty( struct NineSurface9 *This ) assert(This->texture == D3DRTYPE_TEXTURE || This->texture == D3DRTYPE_CUBETEXTURE); if (This->base.pool == D3DPOOL_MANAGED) - tex->dirty = TRUE; + tex->managed.dirty = TRUE; else if (This->base.usage & D3DUSAGE_AUTOGENMIPMAP) tex->dirty_mip = TRUE; |