mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 02:27:13 +08:00
64 lines
1.8 KiB
Diff
64 lines
1.8 KiB
Diff
From 30787294c837aefa8820b6f76f00fe30d4e54181 Mon Sep 17 00:00:00 2001
|
|
From: Adam Jackson <ajax@redhat.com>
|
|
Date: Tue, 25 Sep 2012 12:55:01 +0000
|
|
Subject: Remove mibstore.h
|
|
|
|
Signed-off-by: Adam Jackson <ajax@redhat.com>
|
|
---
|
|
diff --git a/src/trident_driver.c b/src/trident_driver.c
|
|
index dc12b76..408c870 100644
|
|
--- a/src/trident_driver.c
|
|
+++ b/src/trident_driver.c
|
|
@@ -56,7 +56,6 @@
|
|
|
|
#include "mipointer.h"
|
|
|
|
-#include "mibstore.h"
|
|
#include "shadow.h"
|
|
#include "trident.h"
|
|
#include "trident_regs.h"
|
|
@@ -3037,7 +3036,6 @@ TRIDENTScreenInit(SCREEN_INIT_ARGS_DECL)
|
|
TridentAccelInit(pScreen);
|
|
}
|
|
|
|
- miInitializeBackingStore(pScreen);
|
|
xf86SetBackingStore(pScreen);
|
|
|
|
/* Initialise cursor functions */
|
|
--
|
|
cgit v0.9.0.2-2-gbebe
|
|
From 48c15909691e28ad2c188a2978b1c8ef3d9d8760 Mon Sep 17 00:00:00 2001
|
|
From: Timo Aaltonen <tjaalton@ubuntu.com>
|
|
Date: Wed, 26 Sep 2012 08:01:26 +0000
|
|
Subject: Fix loading the driver without XAA
|
|
|
|
---
|
|
diff --git a/src/trident_dga.c b/src/trident_dga.c
|
|
index 0263aa7..c4b5b9a 100644
|
|
--- a/src/trident_dga.c
|
|
+++ b/src/trident_dga.c
|
|
@@ -37,10 +37,10 @@
|
|
static Bool TRIDENT_OpenFramebuffer(ScrnInfoPtr, char **, unsigned char **,
|
|
int *, int *, int *);
|
|
static Bool TRIDENT_SetMode(ScrnInfoPtr, DGAModePtr);
|
|
-static void TRIDENT_Sync(ScrnInfoPtr);
|
|
static int TRIDENT_GetViewport(ScrnInfoPtr);
|
|
static void TRIDENT_SetViewport(ScrnInfoPtr, int, int, int);
|
|
#ifdef HAVE_XAA_H
|
|
+static void TRIDENT_Sync(ScrnInfoPtr);
|
|
static void TRIDENT_FillRect(ScrnInfoPtr, int, int, int, int, unsigned long);
|
|
static void TRIDENT_BlitRect(ScrnInfoPtr, int, int, int, int, int, int);
|
|
#if 0
|
|
@@ -56,8 +56,8 @@ DGAFunctionRec TRIDENTDGAFuncs = {
|
|
TRIDENT_SetMode,
|
|
TRIDENT_SetViewport,
|
|
TRIDENT_GetViewport,
|
|
- TRIDENT_Sync,
|
|
#ifdef HAVE_XAA_H
|
|
+ TRIDENT_Sync,
|
|
TRIDENT_FillRect,
|
|
TRIDENT_BlitRect,
|
|
#if 0
|
|
--
|
|
cgit v0.9.0.2-2-gbebe
|