Skip to content

Commit

Permalink
Revert "These changes are necessary, yet not sufficient, to get 8-bit…
Browse files Browse the repository at this point in the history
… indexed"

This reverts commit 7baba3f.
This should hopefully prevent the "sunglasses" problem aka
"why is my xterm black"?
  • Loading branch information
Ben Byer authored and Jeremy Huddleston committed Nov 19, 2007
1 parent 9f33e82 commit 983088e
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 147 deletions.
36 changes: 0 additions & 36 deletions miext/rootless/rootlessCommon.c
Expand Up @@ -34,7 +34,6 @@
#endif

#include "rootlessCommon.h"
#include "colormapst.h"

unsigned int rootless_CopyBytes_threshold = 0;
unsigned int rootless_FillBytes_threshold = 0;
Expand Down Expand Up @@ -96,41 +95,6 @@ IsFramedWindow(WindowPtr pWin)
return (top && WINREC(top));
}

Bool
RootlessResolveColormap (ScreenPtr pScreen, int first_color,
int n_colors, uint32_t *colors)
{
int last, i;
ColormapPtr map;

map = RootlessGetColormap (pScreen);
if (map == NULL || map->class != PseudoColor) return FALSE;

last = MIN (map->pVisual->ColormapEntries, first_color + n_colors);
for (i = MAX (0, first_color); i < last; i++) {
Entry *ent = map->red + i;
uint16_t red, green, blue;

if (!ent->refcnt) continue;
if (ent->fShared) {
red = ent->co.shco.red->color;
green = ent->co.shco.green->color;
blue = ent->co.shco.blue->color;
} else {
red = ent->co.local.red;
green = ent->co.local.green;
blue = ent->co.local.blue;
}

colors[i - first_color] = (0xFF000000UL
| ((uint32_t) red & 0xff00) << 8
| (green & 0xff00)
| (blue >> 8));
}

return TRUE;
}


/*
* RootlessStartDrawing
Expand Down
18 changes: 0 additions & 18 deletions miext/rootless/rootlessCommon.h
Expand Up @@ -32,7 +32,6 @@
#include <dix-config.h>
#endif

#include <stdint.h>
#ifndef _ROOTLESSCOMMON_H
#define _ROOTLESSCOMMON_H

Expand Down Expand Up @@ -105,20 +104,13 @@ typedef struct _RootlessScreenRec {
GlyphsProcPtr Glyphs;
#endif

InstallColormapProcPtr InstallColormap;
UninstallColormapProcPtr UninstallColormap;
StoreColorsProcPtr StoreColors;

void *pixmap_data;
unsigned int pixmap_data_size;

ColormapPtr colormap;

void *redisplay_timer;
unsigned int redisplay_timer_set :1;
unsigned int redisplay_queued :1;
unsigned int redisplay_expired :1;
unsigned int colormap_changed :1;
} RootlessScreenRec, *RootlessScreenPtr;


Expand Down Expand Up @@ -259,16 +251,6 @@ void RootlessRedisplayScreen(ScreenPtr pScreen);

void RootlessQueueRedisplay(ScreenPtr pScreen);

/* Return the colormap currently installed on the given screen. */
ColormapPtr RootlessGetColormap (ScreenPtr pScreen);

/* Convert colormap to ARGB. */
Bool RootlessResolveColormap (ScreenPtr pScreen, int first_color,
int n_colors, uint32_t *colors);

void RootlessFlushWindowColormap (WindowPtr pWin);
void RootlessFlushScreenColormaps (ScreenPtr pScreen);

// Move a window to its proper location on the screen.
void RootlessRepositionWindow(WindowPtr pWin);

Expand Down
65 changes: 0 additions & 65 deletions miext/rootless/rootlessScreen.c
Expand Up @@ -42,7 +42,6 @@
#include "propertyst.h"
#include "mivalidate.h"
#include "picturestr.h"
#include "colormapst.h"

#include <sys/types.h>
#include <sys/stat.h>
Expand Down Expand Up @@ -470,67 +469,6 @@ RootlessMarkOverlappedWindows(WindowPtr pWin, WindowPtr pFirst,
return result;
}

ColormapPtr
RootlessGetColormap (ScreenPtr pScreen)
{
RootlessScreenRec *s = SCREENREC (pScreen);

return s->colormap;
}

static void
RootlessInstallColormap (ColormapPtr pMap)
{
ScreenPtr pScreen = pMap->pScreen;
RootlessScreenRec *s = SCREENREC (pScreen);

SCREEN_UNWRAP(pScreen, InstallColormap);

if (s->colormap != pMap) {
s->colormap = pMap;
s->colormap_changed = TRUE;
RootlessQueueRedisplay (pScreen);
}

pScreen->InstallColormap (pMap);

SCREEN_WRAP (pScreen, InstallColormap);
}

static void
RootlessUninstallColormap (ColormapPtr pMap)
{
ScreenPtr pScreen = pMap->pScreen;
RootlessScreenRec *s = SCREENREC (pScreen);

SCREEN_UNWRAP(pScreen, UninstallColormap);

if (s->colormap == pMap)
s->colormap = NULL;

pScreen->UninstallColormap (pMap);

SCREEN_WRAP(pScreen, UninstallColormap);
}

static void
RootlessStoreColors (ColormapPtr pMap, int ndef, xColorItem *pdef)
{
ScreenPtr pScreen = pMap->pScreen;
RootlessScreenRec *s = SCREENREC (pScreen);

SCREEN_UNWRAP(pScreen, StoreColors);

if (s->colormap == pMap && ndef > 0) {
s->colormap_changed = TRUE;
RootlessQueueRedisplay (pScreen);
}

pScreen->StoreColors (pMap, ndef, pdef);

SCREEN_WRAP(pScreen, StoreColors);
}


static CARD32
RootlessRedisplayCallback(OsTimerPtr timer, CARD32 time, void *arg)
Expand Down Expand Up @@ -678,9 +616,6 @@ RootlessWrap(ScreenPtr pScreen)
WRAP(MarkOverlappedWindows);
WRAP(ValidateTree);
WRAP(ChangeWindowAttributes);
WRAP(InstallColormap);
WRAP(UninstallColormap);
WRAP(StoreColors);

#ifdef SHAPE
WRAP(SetShape);
Expand Down
28 changes: 0 additions & 28 deletions miext/rootless/rootlessWindow.c
Expand Up @@ -447,12 +447,6 @@ RootlessInitializeFrame(WindowPtr pWin, RootlessWindowRec *winRec)
}


Bool
RootlessColormapCallback (void *data, int first_color, int n_colors, uint32_t *colors)
{
return RootlessResolveColormap (data, first_color, n_colors, colors);
}

/*
* RootlessEnsureFrame
* Make sure the given window is framed. If the window doesn't have a
Expand Down Expand Up @@ -511,9 +505,6 @@ RootlessEnsureFrame(WindowPtr pWin)
return NULL;
}

if (pWin->drawable.depth == 8)
RootlessFlushWindowColormap(pWin);

#ifdef SHAPE
if (pShape != NULL)
REGION_UNINIT(pScreen, &shape);
Expand Down Expand Up @@ -1467,25 +1458,6 @@ RootlessReparentWindow(WindowPtr pWin, WindowPtr pPriorParent)
}


void
RootlessFlushWindowColormap (WindowPtr pWin)
{
RootlessWindowRec *winRec = WINREC (pWin);
xp_window_changes wc;

if (winRec == NULL)
return;

RootlessStopDrawing (pWin, FALSE);

/* This is how we tell xp that the colormap may have changed. */

wc.colormap = RootlessColormapCallback;
wc.colormap_data = pWin->drawable.pScreen;

configure_window (winRec->wid, XP_COLORMAP, &wc);
}

/*
* SetPixmapOfAncestors
* Set the Pixmaps on all ParentRelative windows up the ancestor chain.
Expand Down

0 comments on commit 983088e

Please sign in to comment.