ff4ff35918
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
31 lines
405 B
C
31 lines
405 B
C
|
|
#ifndef _X11_IMUTIL_H_
|
|
#define _X11_IMUTIL_H_
|
|
|
|
extern int
|
|
_XGetScanlinePad(
|
|
Display *dpy,
|
|
int depth);
|
|
|
|
extern int
|
|
_XGetBitsPerPixel(
|
|
Display *dpy,
|
|
int depth);
|
|
|
|
extern int
|
|
_XSetImage(
|
|
XImage *srcimg,
|
|
XImage *dstimg,
|
|
int x,
|
|
int y);
|
|
|
|
extern int
|
|
_XReverse_Bytes(
|
|
unsigned char *bpt,
|
|
int nb);
|
|
extern void
|
|
_XInitImageFuncPtrs(
|
|
XImage *image);
|
|
|
|
#endif /* _X11_IMUTIL_H_ */
|