blob: b2c71a714573d3360ef52e1f224bd7d39a818ed5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#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);
}
|