mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-06 15:20:17 +01:00
pipebuffer: Fix reversed assertion.
This commit is contained in:
parent
0013796948
commit
28ecb986d9
1 changed files with 1 additions and 1 deletions
|
|
@ -170,7 +170,7 @@ pool_bufmgr_create_buffer(struct pb_manager *mgr,
|
|||
struct list_head *item;
|
||||
|
||||
assert(size == pool->bufSize);
|
||||
assert(desc->alignment % pool->bufAlign == 0);
|
||||
assert(pool->bufAlign % desc->alignment == 0);
|
||||
|
||||
_glthread_LOCK_MUTEX(pool->mutex);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue