summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md2
-rw-r--r--README.pm36
-rw-r--r--src/glint_regs.h2
-rw-r--r--src/pm2_video.c2
-rw-r--r--src/pm3_accel.c4
-rw-r--r--src/pm3_video.c2
6 files changed, 9 insertions, 9 deletions
diff --git a/README.md b/README.md
index 21be738..e679abb 100644
--- a/README.md
+++ b/README.md
@@ -6,7 +6,7 @@ Xorg mailing list:
https://lists.x.org/mailman/listinfo/xorg
-The master development code repository can be found at:
+The primary development code repository can be found at:
https://gitlab.freedesktop.org/xorg/driver/xf86-video-glint
diff --git a/README.pm3 b/README.pm3
index ff443c8..798f5d3 100644
--- a/README.pm3
+++ b/README.pm3
@@ -1,9 +1,9 @@
STATUS as of Tue, 8 May 2001 19:01:39 +0200
Working :
- * Unaccelerated : Depth 8, 15, 16 and 24 are ok. I tested them upto
+ * Unaccelerated : Depth 8, 15, 16 and 24 are ok. I tested them up to
1280x1024 only as my monitor don't support higher modes.
- * Endianess clean, thanks to Romain Dolbeau <dolbeaur@club-internet.fr> for
+ * Endianness clean, thanks to Romain Dolbeau <dolbeaur@club-internet.fr> for
helping me debug this.
* HW cursor.
* ShadowFb.
@@ -24,7 +24,7 @@ Working :
* Xv : Hardware video scaler :
- Needs checking on a big endian machine.
- Needs acceleration to work - there is a hardware bug in YV12 mode.
- - Support both dual head and single head, trough gamma or permedia3.
+ - Support both dual head and single head, through gamma or permedia3.
- NOTE: depth 15 and 16 currently broken as I can't figure out the
colorKey equation. From the docs it needs to be padded to 8bits per RGB,
but that doesn't seem to work either. FIXME.
diff --git a/src/glint_regs.h b/src/glint_regs.h
index dda2f2b..77a8c47 100644
--- a/src/glint_regs.h
+++ b/src/glint_regs.h
@@ -105,7 +105,7 @@
#define CFGIntPin 0x3d
#define CFGIntLine 0x3c
-/* Base Adresses */
+/* Base Addresses */
#define CFGBaseAddr0 0x10
#define CFGBaseAddr1 0x14
#define CFGBaseAddr2 0x18
diff --git a/src/pm2_video.c b/src/pm2_video.c
index 6d78299..6f923ed 100644
--- a/src/pm2_video.c
+++ b/src/pm2_video.c
@@ -2987,7 +2987,7 @@ Permedia2VideoInit(ScreenPtr pScreen)
XF86VideoAdaptorPtr VARPtrs[ADAPTORS];
Bool VideoIO = TRUE;
int i;
- /* Glint is still intializing, so pGlint->Options is off-limits. */
+ /* Glint is still initializing, so pGlint->Options is off-limits. */
OptionInfoPtr VidOpts;
switch (pGlint->Chipset) {
diff --git a/src/pm3_accel.c b/src/pm3_accel.c
index bd108a3..9b1284b 100644
--- a/src/pm3_accel.c
+++ b/src/pm3_accel.c
@@ -228,7 +228,7 @@ Permedia3InitializeEngine(ScrnInfoPtr pScrn)
GLINT_SLOW_WRITE_REG(0, StencilData);
/* FBReadUnit Initialization */
- TRACE("Permedia3InitializeEngine : only syncs upto now");
+ TRACE("Permedia3InitializeEngine : only syncs up to now");
GLINT_SLOW_WRITE_REG(
PM3FBDestReadEnables_E(0xff) |
PM3FBDestReadEnables_R(0xff) |
@@ -505,7 +505,7 @@ Permedia3EnableOffscreen (ScreenPtr pScreen)
AvailFBArea.x1 = 0;
AvailFBArea.y1 = 0;
AvailFBArea.x2 = pScrn->displayWidth;
- /* X coords are short's so we have to do this to make sure we dont wrap*/
+ /* X coords are shorts so we have to do this to make sure we don't wrap */
AvailFBArea.y2 = ((pGlint->FbMapSize > 16384*1024) ? 16384*1024 :
pGlint->FbMapSize) / (pScrn->displayWidth *
pScrn->bitsPerPixel / 8);
diff --git a/src/pm3_video.c b/src/pm3_video.c
index 6883796..64bc24b 100644
--- a/src/pm3_video.c
+++ b/src/pm3_video.c
@@ -656,7 +656,7 @@ Permedia3AllocateMemory(ScrnInfoPtr pScrn, FBAreaPtr area, int width, int height
#define FORMAT_VUY422 PM3VideoOverlayMode_COLORFORMAT_VUY422
#define FORMAT_YUV422 PM3VideoOverlayMode_COLORFORMAT_YUV422
-/* Notice, have to check that we dont overflow the deltas here ... */
+/* Notice, have to check that we don't overflow the deltas here ... */
static void
compute_scale_factor(
short* src_w, short* dst_w,