Update of /cvsroot/artoolkit/artoolkit/lib/SRC/Gl
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29708
Modified Files:
gsub_lite.c
Log Message:
Change to DOS line endings.
Index: gsub_lite.c
===================================================================
RCS file: /cvsroot/artoolkit/artoolkit/lib/SRC/Gl/gsub_lite.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** gsub_lite.c 30 Jul 2005 01:06:06 -0000 1.4
--- gsub_lite.c 12 Aug 2005 22:52:20 -0000 1.5
***************
*** 1,838 ****
! /*
! * gsub_lite.c
! *
! * Graphics Subroutines (Lite) for ARToolKit.
! *
! * Copyright (c) 2003-2005 Philip Lamb (PRL) ph...@ed.... All rights reserved.
! *
! * Rev Date Who Changes
! * 2.6.5 ????-??-?? MB/HK Original from ARToolKit-2.65DS gsub.c
! * 2.7.0 2003-08-13 PRL Lipo'ed and whipped into shape.
[...1647 lines suppressed...]
! arglDispImageTexRectangle(image, cparam, zoomf, contextSettings, texmapScaleFactor);
! }
! #endif // AR_OPENGL_TEXTURE_RECTANGLE
! }
! }
!
! int arglDistortionCompensationSet(ARGL_CONTEXT_SETTINGS_REF contextSettings, int enable)
! {
! if (!contextSettings) return (FALSE);
! contextSettings->disableDistortionCompensation = !enable;
! contextSettings->initPlease = TRUE;
! return (TRUE);
! }
!
! int arglDistortionCompensationGet(ARGL_CONTEXT_SETTINGS_REF contextSettings, int *enable)
! {
! if (!contextSettings) return (FALSE);
! *enable = !contextSettings->disableDistortionCompensation;
! return (TRUE);
! }
|