fb: make fbGCOps static

Not used anywhere outside fbgc.c, so can be static.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
Enrico Weigelt, metux IT consult 2025-04-22 21:12:49 +02:00
parent 4125712079
commit ab6c67e547
2 changed files with 1 additions and 2 deletions

View File

@ -313,7 +313,6 @@ extern _X_EXPORT void fbSetBits(FbStip * bits, int stride, FbStip data);
} \ } \
} }
extern _X_EXPORT const GCOps fbGCOps;
extern _X_EXPORT const GCFuncs fbGCFuncs; extern _X_EXPORT const GCFuncs fbGCFuncs;
/* Framebuffer access wrapper */ /* Framebuffer access wrapper */

View File

@ -36,7 +36,7 @@ const GCFuncs fbGCFuncs = {
miCopyClip, miCopyClip,
}; };
const GCOps fbGCOps = { static const GCOps fbGCOps = {
fbFillSpans, fbFillSpans,
fbSetSpans, fbSetSpans,
fbPutImage, fbPutImage,