diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2024-05-19 11:53:22 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2024-05-19 12:01:39 -0700 |
commit | 6100635debdda392ca420e87c5b0d70bd22dfed8 (patch) | |
tree | ff43e16a6b8507ce0f3fe006babc371423e28c06 /src/ffb.h | |
parent | 9d9b53bc8cb3ed4a5630d6b4dd23603d4d431cb5 (diff) |
Remove XAA supportmaster
Mostly done via unifdef -UHAVE_XAA_H, followed by minor manual editing
Since recent commits require xserver-1.18.0 or later to build against,
there's no reason leaving behind big chunks of code that can only build
against the XAA support removed in xserver-1.13.0 (released in 2012).
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Part-of: <https://gitlab.freedesktop.org/xorg/driver/xf86-video-sunffb/-/merge_requests/8>
Diffstat (limited to 'src/ffb.h')
-rw-r--r-- | src/ffb.h | 22 |
1 files changed, 0 insertions, 22 deletions
@@ -31,9 +31,6 @@ #include "xf86.h" #include "xf86_OSproc.h" #include "xf86Cursor.h" -#ifdef HAVE_XAA_H -#include "xaa.h" -#endif #include <X11/Xmd.h> #include "gcstruct.h" #include "windowstr.h" @@ -175,21 +172,6 @@ typedef struct { unsigned char has_z_buffer; unsigned char has_double_buffer; - /* XAA related info */ -#ifdef HAVE_XAA_H - XAAInfoRecPtr pXAAInfo; -#endif - unsigned int xaa_fbc; - unsigned int xaa_wid; - unsigned int xaa_planemask; - unsigned int xaa_linepat; - int xaa_xdir, xaa_ydir, xaa_rop; - unsigned char *xaa_scanline_buffers[2]; - int xaa_scanline_x, xaa_scanline_y, xaa_scanline_w; - unsigned char *xaa_tex; - int xaa_tex_pitch, xaa_tex_width, xaa_tex_height; - unsigned int xaa_tex_color; - enum ffb_resolution ffb_res; BoxRec ClippedBoxBuf[64]; xRectangle Pf_Fixups[4]; @@ -213,10 +195,6 @@ typedef struct { OptionInfoPtr Options; } FFBRec, *FFBPtr; -/* Acceleration */ -extern Bool FFBAccelInit(ScreenPtr, FFBPtr); -extern void CreatorVtChange (ScreenPtr pScreen, int enter); - /* HW cursor support */ extern Bool FFBHWCursorInit(ScreenPtr); |