Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions dix/dix_priv.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@
#include "include/resource.h"
#include "include/window.h"

/* pad scanline to a longword */
#define BITMAP_SCANLINE_UNIT 32

#define LEGAL_NEW_RESOURCE(id,client) \
do { \
if (!LegalNewID((id), (client))) { \
Expand Down
1 change: 1 addition & 0 deletions hw/kdrive/src/kdrive.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
#include <kdrive-config.h>

#include "config/hotplug_priv.h"
#include "dix/dix_priv.h"
#include "dix/screenint_priv.h"
#include "os/cmdline.h"
#include "os/ddx_priv.h"
Expand Down
1 change: 1 addition & 0 deletions hw/xquartz/darwin.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
#include <X11/X.h>
#include <X11/Xproto.h>

#include "dix/dix_priv.h"
#include "dix/screenint_priv.h"
#include "miext/extinit_priv.h"
#include "os/ddx_priv.h"
Expand Down
7 changes: 0 additions & 7 deletions include/servermd.h
Original file line number Diff line number Diff line change
Expand Up @@ -68,16 +68,9 @@ SOFTWARE.
#define GLYPHPADBYTES 4
#endif

/* pad scanline to a longword */
#ifndef BITMAP_SCANLINE_UNIT
#define BITMAP_SCANLINE_UNIT 32
#endif

#ifndef BITMAP_SCANLINE_PAD
#define BITMAP_SCANLINE_PAD 32
#define LOG2_BITMAP_PAD 5
#define LOG2_BYTES_PER_SCANLINE_PAD 2
#endif

#include <X11/Xfuncproto.h>
/*
Expand Down
Loading