mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-04 04:06:06 -05:00
10 lines
198 B
C
10 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);
|
||
|
|
}
|