mirror of
https://codeberg.org/dnkl/yambar.git
synced 2025-04-19 19:25:41 +02:00
9 lines
198 B
C
9 lines
198 B
C
#pragma once
|
|
|
|
#include <pixman.h>
|
|
|
|
static inline int
|
|
stride_for_format_and_width(pixman_format_code_t format, int width)
|
|
{
|
|
return (((PIXMAN_FORMAT_BPP(format) * width + 7) / 8 + 4 - 1) & -4);
|
|
}
|