summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2012-05-16Put data on screen the right way up.HEADmasterWill Thompson3-6/+27
2012-05-16annotate a call to CheckGLErrorWill Thompson1-1/+1
2012-05-15write to the screen the other way upWill Thompson1-2/+2
2012-05-11Set GL_TEXTURE_MAG/MIN_FILTERWill Thompson1-0/+2
I made this mistake *again*.
2012-05-11Implement FinishAccess for the screen pixmapWill Thompson4-4/+221
2012-05-11Move CheckGLError to -debug.[ch]Will Thompson4-43/+71
The shader code will want to use this too. It's not strictly debug-related, but hey.
2012-05-11exa: macro-ize CheckGLError()Will Thompson1-27/+41
This uses GCC statement expressions… but that doesn't seem so bad. This means the debug messages get useful function and line number information, rather than always coming from CheckGLError. Also, I'll move most of this to -debug.h in a moment.
2012-05-10Implement FinishAccess for ¬screen pixmapWill Thompson1-13/+38
2012-05-09exa: null out priv->data after freeing it…Will Thompson1-0/+2
2012-05-09Add a stub SaveScreenWill Thompson1-0/+9
2012-05-09exa: stash memory allocated in PrepareAccessWill Thompson1-14/+27
FinishAccess doesn't get to peek at devPrivate.ptr, so we need to stash the blob of memory we allocated in PrepareAccess so we can get at it from FinishAccess. (Not that we use it yet.)
2012-05-09exa: Allocate VideoCorePixmapPrivRec properlyWill Thompson1-1/+1
2012-05-09moar debugWill Thompson1-2/+5
2012-05-09exa: try allocating cpu memory for unaccelerated pixmapsenWill Thompson1-0/+6
2012-05-09exa: refuse to allocate images for bpp != 32Will Thompson1-1/+5
2012-05-09WIP: gut some more fbdevHW*Will Thompson3-162/+56
2012-05-09exa: fix IsOffscreen to work for screen pixmapWill Thompson1-1/+2
2012-05-09exa: document some arguments better.Will Thompson1-2/+4
2012-05-08WIP: Implement PrepareAccess and FinishAccess.Will Thompson3-37/+107
2012-05-04Implement the essential bits of the EXA APIWill Thompson6-6/+610
This doesn't work yet, not least because we let PrepareAccess fail for the screen pixmap.
2012-05-04Enable warnings; fix warnings; fly.Will Thompson2-8/+12
2012-05-04Blow away DGAWill Thompson1-160/+1
2012-05-04Remove ShadowFB and Rotate optionsWill Thompson1-211/+3
2012-04-25Forward-declare main struct in a headerWill Thompson3-15/+47
2012-04-25Ignore cscope/ctags/vim droppingsWill Thompson1-1/+4
2012-04-25Move debug macros out to a header.Will Thompson3-9/+63
2012-04-20Build 'videocore' rather than 'fbdev'.Will Thompson4-17/+17
Currently, this is functionally identical.
2010-12-17Add MOD_CLASS_VIDEODRV to FBDevVersRecPaulo Zanoni1-1/+1
fbdev seems to be the only video driver without MOD_CLASS_VIDEODRV Signed-off-by: Paulo Zanoni <pzanoni@mandriva.com> Reviewed-by: Jesse Adkins <jesserayadkins@gmail.com> Signed-off-by: Julien Cristau <jcristau@debian.org>
2010-11-10Perform XV initialization only if the server supports it.Cyril Brulebois1-0/+2
Use XV from server's xorg-server.h to determine whether to perform XV initialization. Signed-off-by: Cyril Brulebois <kibi@debian.org> Reviewed-by: Julien Cristau <jcristau@debian.org> Signed-off-by: Julien Cristau <jcristau@debian.org>
2010-11-10Avoid unused variables when XSERVER_LIBPCIACCESS is defined.Cyril Brulebois1-0/+2
Signed-off-by: Cyril Brulebois <kibi@debian.org> Reviewed-by: Julien Cristau <jcristau@debian.org> Signed-off-by: Julien Cristau <jcristau@debian.org>
2010-11-10man: Stop mentioning server's -scanpci option.Cyril Brulebois1-3/+1
It got removed in server's 9727db88d57089be6483104de435626cdbad883a (long time ago). Signed-off-by: Cyril Brulebois <kibi@debian.org> Reviewed-by: Julien Cristau <jcristau@debian.org> Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> Signed-off-by: Julien Cristau <jcristau@debian.org>
2010-11-10Convert x{re,c,}alloc and xfree.Cyril Brulebois1-9/+9
Signed-off-by: Cyril Brulebois <kibi@debian.org> Reviewed-by: Julien Cristau <jcristau@debian.org> Signed-off-by: Julien Cristau <jcristau@debian.org>
2010-10-06Purge cvs tags.Jesse Adkins1-1/+0
Signed-off-by: Jesse Adkins <jesserayadkins@gmail.com> Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2010-07-21config: add comments for main statementsGaetan Nadon1-5/+6
2010-07-21config: replace deprecated use of AC_OUTPUT with AC_CONFIG_FILESGaetan Nadon1-4/+5
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-07-21config: replace deprecated AC_HELP_STRING with AS_HELP_STRINGGaetan Nadon1-1/+1
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-07-21config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERSGaetan Nadon1-1/+1
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-07-21config: complete AC_INIT m4 quotingGaetan Nadon1-2/+2
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-07-20config: remove unrequired AC_SUBST([XORG_CFLAGS])Gaetan Nadon1-1/+0
This macro is called by PKG_CHECK_MODULES Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-07-20config: remove unrequired AC_HEADER_STDCGaetan Nadon1-2/+0
Autoconf says: "This macro is obsolescent, as current systems have conforming header files. New programs need not use this macro". Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-07-20config: remove AC_PROG_CC as it overrides AC_PROG_C_C99Gaetan Nadon1-1/+0
XORG_STRICT_OPTION from XORG_DEFAULT_OPTIONS calls AC_PROG_C_C99. This sets gcc with -std=gnu99. If AC_PROG_CC macro is called afterwards, it resets CC to gcc. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-07-20config: update AC_PREREQ statement to 2.60Gaetan Nadon1-1/+1
Unrelated to the previous patches, the new value simply reflects the reality that the minimum level for autoconf to configure all x.org modules is 2.60 dated June 2006. ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-07-20config: upgrade to util-macros 1.8 for additional man page supportGaetan Nadon2-21/+7
Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS The value of MAN_SUBST is the same for all X.Org packages.
2010-04-03Bump to 0.4.2Julien Cristau1-1/+1
2010-02-10configure: require xorg-macros 1.4 for XORG_INSTALLJulien Cristau1-2/+2
Signed-off-by: Julien Cristau <jcristau@debian.org>
2010-02-08fbdev: add missing shadowRemove in CloseScreen()Julien Cristau1-0/+1
Fixes crash in CloseScreen(). Signed-off-by: Julien Cristau <jcristau@debian.org> Tested-by: Cyril Brulebois <kibi@debian.org>
2010-01-15Update Sun license notices to current X.Org standard formAlan Coopersmith1-22/+19
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
2009-12-30configure.ac: remove unused sdkdir=$(pkg-config...) statementGaetan Nadon1-1/+0
The sdkdir variable isn't use, so remove the statement. Acked-by: Dan Nicholson <dbn.lists@gmail.com> Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2009-12-14Remove afb supportAdam Jackson1-44/+2
Signed-off-by: Adam Jackson <ajax@redhat.com>
2009-11-23Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILESGaetan Nadon1-0/+1
Now that the INSTALL file is generated. Allows running make maintainer-clean.