diff options
author | José Fonseca <jfonseca@vmware.com> | 2009-01-28 15:53:09 +0000 |
---|---|---|
committer | José Fonseca <jfonseca@vmware.com> | 2009-01-28 15:54:13 +0000 |
commit | 815de0a5dfadbe9a2618b94c4f28a799cc501a14 (patch) | |
tree | 8b061064abb2a057e6c22f427b6e7ddad0049960 /src | |
parent | 665d6d6c1e5ebbb925e73bd3637d228def5a977d (diff) |
pipebuffer: Fix alignment assertion.
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/auxiliary/pipebuffer/pb_bufmgr_mm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/auxiliary/pipebuffer/pb_bufmgr_mm.c b/src/gallium/auxiliary/pipebuffer/pb_bufmgr_mm.c index a976d3041a..d4434c6962 100644 --- a/src/gallium/auxiliary/pipebuffer/pb_bufmgr_mm.c +++ b/src/gallium/auxiliary/pipebuffer/pb_bufmgr_mm.c @@ -154,8 +154,8 @@ mm_bufmgr_create_buffer(struct pb_manager *mgr, struct mm_buffer *mm_buf; /* We don't handle alignments larger then the one initially setup */ - assert(desc->alignment % (1 << mm->align2) == 0); - if(desc->alignment % (1 << mm->align2)) + assert(pb_check_alignment(desc->alignment, 1 << mm->align2)); + if(!pb_check_alignment(desc->alignment, 1 << mm->align2)) return NULL; pipe_mutex_lock(mm->mutex); |