mirror of
https://github.com/X11Libre/xserver.git
synced 2026-03-28 09:59:56 +00:00
Only used within fb/, not by any driver, so no need to keep it exported. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
22 lines
413 B
C
22 lines
413 B
C
/* SPDX-License-Identifier: MIT OR X11
|
|
*
|
|
* Copyright © 2024 Enrico Weigelt, metux IT consult <info@metux.net>
|
|
*/
|
|
#ifndef XORG_FB_PRIV_H
|
|
#define XORG_FB_PRIV_H
|
|
|
|
#include "fb/fb.h"
|
|
|
|
#ifdef FB_DEBUG
|
|
|
|
void fbValidateDrawable(DrawablePtr d);
|
|
void fbSetBits(FbStip * bits, int stride, FbStip data);
|
|
|
|
#else
|
|
|
|
static inline void fbValidateDrawable(DrawablePtr d) {}
|
|
|
|
#endif /* FB_DEBUG */
|
|
|
|
#endif /* XORG_FB_PRIV_H */
|