summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2001-05-09 20:45:00 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2001-05-09 20:45:00 +0000
commit91979127ecec0f3d60507f9197b1f9fd00e4e145 (patch)
tree33cbd4efa0566ce1930219d181f9e88ab3f95e2f /src
parent7884aa151fb630b3533e060d24f1e0f51724f08b (diff)
fixed font/bitmap x-offset bug (Frank Warmerdam)
Diffstat (limited to 'src')
-rw-r--r--src/mesa/drivers/windows/wgl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/windows/wgl.c b/src/mesa/drivers/windows/wgl.c
index 87fd5f7b0a..82df9a3258 100644
--- a/src/mesa/drivers/windows/wgl.c
+++ b/src/mesa/drivers/windows/wgl.c
@@ -1,4 +1,4 @@
-/* $Id: wgl.c,v 1.5 2001/04/03 16:25:54 brianp Exp $ */
+/* $Id: wgl.c,v 1.6 2001/05/09 20:45:00 brianp Exp $ */
/*
* This library is free software; you can redistribute it and/or
@@ -313,7 +313,7 @@ GLAPI BOOL GLWINAPI wglUseFontBitmapsA(HDC hdc, DWORD first,
}
glBitmap(gm.gmBlackBoxX,gm.gmBlackBoxY,
- gm.gmptGlyphOrigin.x,
+ -gm.gmptGlyphOrigin.x,
gm.gmptGlyphOrigin.y,
gm.gmCellIncX,gm.gmCellIncY,
(const GLubyte * )lpBits);