From: Patrick Rudolph <s...@das-labor.org> Move assert to function entry.
Signed-off-by: Patrick Rudolph <s...@das-labor.org> Reviewed-by: Axel Davy <axel.d...@ens.fr> --- src/gallium/state_trackers/nine/surface9.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gallium/state_trackers/nine/surface9.c b/src/gallium/state_trackers/nine/surface9.c index 4d54309..45a37f4 100644 --- a/src/gallium/state_trackers/nine/surface9.c +++ b/src/gallium/state_trackers/nine/surface9.c @@ -76,6 +76,8 @@ NineSurface9_ctor( struct NineSurface9 *This, /* The only way we can have !pContainer is being created * from create_zs_or_rt_surface with params 0 0 0 */ assert(pContainer || (Level == 0 && Layer == 0 && TextureType == 0)); + /* Make sure no resource is passed for pool systemmem */ + assert(pDesc->Pool != D3DPOOL_SYSTEMMEM || !pResource); This->data = (uint8_t *)user_buffer; @@ -135,8 +137,6 @@ NineSurface9_ctor( struct NineSurface9 *This, return E_OUTOFMEMORY; } - assert(pDesc->Pool != D3DPOOL_SYSTEMMEM || !pResource); - if (pResource && (pDesc->Usage & D3DUSAGE_DYNAMIC)) pResource->flags |= NINE_RESOURCE_FLAG_LOCKABLE; -- 2.10.0 _______________________________________________ mesa-dev mailing list mesa-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/mesa-dev