mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 18:18:06 +02:00
libagx: assert alignment for copies
would have exposed the bug fixed. Signed-off-by: Alyssa Rosenzweig <alyssa@rosenzweig.io> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/34326>
This commit is contained in:
parent
f0ee1b1967
commit
55046d0293
1 changed files with 5 additions and 0 deletions
|
|
@ -7,12 +7,17 @@
|
|||
KERNEL(32)
|
||||
libagx_fill(global uint32_t *address, uint32_t value)
|
||||
{
|
||||
assert((((uintptr_t)address) & 0x3) == 0);
|
||||
|
||||
address[cl_global_id.x] = value;
|
||||
}
|
||||
|
||||
KERNEL(32)
|
||||
libagx_copy_uint4(global uint4 *dest, global uint4 *src)
|
||||
{
|
||||
assert((((uintptr_t)dest) & 0xf) == 0);
|
||||
assert((((uintptr_t)src) & 0xf) == 0);
|
||||
|
||||
dest[cl_global_id.x] = src[cl_global_id.x];
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue