summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2014-06-02configure: Drop AM_MAINTAINER_MODEAlan Coopersmith2-2/+1
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2014-03-10Add '-pause' option to delay between runsKeith Packard1-0/+11
This lets the package cool down to get more consistent performance numbers. Signed-off-by: Keith Packard <keithp@keithp.com>
2014-03-05Switch to 64-bit intsKeith Packard18-269/+260
2014-03-05Add scaling composite testsKeith Packard2-36/+71
2014-03-05Fix reported pixmap format nameKeith Packard1-11/+31
2014-03-05Add up/down scaling composite testsKeith Packard2-1/+23
2013-02-23Assume signal handlers return void, as C89 requiresAlan Coopersmith2-3/+1
Drops use of autoconf's obsolete AC_TYPE_SIGNAL Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2013-01-20Drop imake fallback for RETSIGTYPE definitionAlan Coopersmith1-10/+0
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2013-01-20Mark usage & AbortTest as _X_NORETURNAlan Coopersmith3-3/+3
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2011-09-28Add const attributes to fix gcc -Wwrite-strings warningsAlan Coopersmith2-13/+13
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2011-07-27x11perf 1.5.4x11perf-1.5.4Alan Coopersmith1-1/+1
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2011-07-10Add MKTEMP to DIR_SUBSTS in MakefileAlan Coopersmith1-0/+1
Needed for commit 1188465112a1 to work after revert of 4af24b2f5b3f8f Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
2011-07-10Revert "Let autoconf generate x11perfcomp directly instead of doing it via sed"Alan Coopersmith2-1/+6
This reverts commit 4af24b2f5b3f8f2c20271ae323b6fa528b9b2127. Letting autoconf do it failed to handle the recursive expansion needed, resulting in "PATH=${exec_prefix}/lib/X11/x11perfcomp:..." without having exec_prefix defined in x11perfcomp. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com> Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
2011-07-01Remove stray remaining CVS id tagAlan Coopersmith1-2/+0
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2011-07-01x11perfcomp should use mktemp instead of pid for tmp directoryAlan Coopersmith2-2/+12
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2011-07-01Let autoconf generate x11perfcomp directly instead of doing it via sedAlan Coopersmith2-6/+1
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2011-07-01x11perfcomp: use saner $PATHAlan Coopersmith1-1/+1
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2011-03-11Make Makefile.am's compatible with Solaris makeAlan Coopersmith1-1/+1
Solaris make won't substitute $< in explicit rules, only implicit ones Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2011-01-24config: substitute x11perfcompdir using Autoconf @x11perfcompdir@Gaetan Nadon4-115/+119
Use the Autoconf recommended way of substituting bindir and friends, see http://www.gnu.org/software/autoconf/manual/autoconf.html Use # sign for comment in script. Only sed is used, drop the cpp terminology. Reviewed-by: RĂ©mi Cardona <remi@gentoo.org> Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2011-01-19config: move man pages into their own directoryGaetan Nadon6-22/+18
Use services provided by XORG_MANPAGE_SECTIONS. Use standard Makefile for man pages. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2011-01-13man: replace hard coded man page section with substitution stringsGaetan Nadon3-5/+5
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2011-01-13man: remove trailing spaces and tabsGaetan Nadon3-38/+38
Using s/[ \t]*$// Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2011-01-07Add tests for ShmGetImageChris Wilson3-7/+78
Similar to GetImage and ShmPutImage, test the performance of retrieving pixel data from the X server without the overhead of copying the pixels. In the upper bound, using XShmGetImage, the performance will be limited by the RTT latency (x11perf -prop). However, comparing the scaling factors of XShmGetImage and XGetImage will give some insight into the driver efficiency. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Reviewed-by: Adam Jackson <ajax@redhat.com>
2011-01-05x11perf 1.5.3x11perf-1.5.3Alan Coopersmith1-1/+1
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2010-11-23Merge fixes from git://anongit.freedesktop.org/~peterh/x11perfPeter Harris1-5/+6
2010-11-23Avoid "rep" calculation overflow.Peter Harris1-5/+5
On today's fast machines, "treps" can easily overflow a 32-bit number. Use "long long" to calculate reps. Signed-off-by: Peter Harris <pharris@opentext.com> Reviewed-by: Adam Jackson <ajax@redhat.com>
2010-11-23Clamp test time to positive values.Peter Harris1-0/+1
If there is some jitter in the sync time, operations can complete in a negative amount of time (confusing both humans and x11perfcomp). Signed-off-by: Peter Harris <pharris@opentext.com> Reviewed-by: Adam Jackson <ajax@redhat.com>
2010-11-19Remove unneccessary AC_SUBST of CFLAGS & LIBS vars from PKG_CHECK_MODULESAlan Coopersmith1-8/+0
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2010-11-19config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERSAlan Coopersmith1-3/+5
Regroup AC statements under the Autoconf initialization section. Regroup AM statements under the Automake initialization section. Add missing AC_CONFIG_SRCDIR Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2010-11-19Bug 31640 - x11perf: Doesn't build without libXftAlan Coopersmith3-3/+3
https://bugs.freedesktop.org/show_bug.cgi?id=31640 Fix trapezoid checks to look for both render & xft Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2010-09-21x11perf 1.5.2x11perf-1.5.2Alan Coopersmith1-1/+4
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2010-09-21config: update AC_PREREQ statement to 2.60Alan Coopersmith1-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: Alan Coopersmith <alan.coopersmith@oracle.com>
2010-09-21config: use AC_PROG_CC & AC_PROG_INSTALL now supplied by XORG_DEFAULT_OPTIONSAlan Coopersmith1-3/+0
The existing statements can now be removed from the configuration file. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2010-09-21config: upgrade to util-macros 1.8 for additional man page supportAlan Coopersmith2-25/+4
Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS The value of MAN_SUBST is the same for all X.Org packages. Use AC_PROG_SED now supplied by XORG_DEFAULT_OPTIONS The existing statement can now be removed from the configuration file. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2010-09-21Remove reference to xbench in x11perf.man (#29830)Timo Myyra1-1/+1
xbench isn't supported by fd.o, and searching for it shows the latest version released in 1995. Signed-off-by: Jesse Adkins <jesserayadkins@gmail.com> Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2010-08-06Add HP notice to COPYING for Xmark scriptAlan Coopersmith1-0/+12
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2010-01-13COPYING: replace stub with actual copyright noticeGaetan Nadon1-9/+16
Refer to x11perf.c Copyright 1988, 1989 by Digital Equipment Corporation Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-01-02Add -falseprecision flag for ludicrously precise statsAdam Jackson1-2/+7
The normal round-to-three-significant-figures behaviour, while morally correct from a benchmarking perspective, makes it impossible to measure variances between runs of less than 1%. Occasionally you really do need to measure that finely - for example, if tweaking the server's main dispatch loop. Signed-off-by: Adam Jackson <ajax@redhat.com>
2010-01-02Death to RCS tags.Adam Jackson24-48/+0
Signed-off-by: Adam Jackson <ajax@redhat.com>
2009-11-26Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILESGaetan Nadon1-0/+1
Now that the INSTALL file is generated. Allows running make maintainer-clean.
2009-10-28INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206Gaetan Nadon4-2/+5
Add missing INSTALL file. Use standard GNU file on building tarball README may have been updated Remove AUTHORS file as it is empty and no content available yet. Remove NEWS file as it is empty and no content available yet.
2009-10-26Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432Gaetan Nadon1-2/+0
ChangeLog filename is known to Automake and requires no further coding in the makefile.
2009-10-22.gitignore: use common defaults with custom section # 24239Gaetan Nadon1-14/+66
Using common defaults will reduce errors and maintenance. Only the very small or inexistent custom section need periodic maintenance when the structure of the component changes. Do not edit defaults.
2009-10-21This is not a GNU project, so declare it foreign.Jeremy Huddleston1-1/+1
On Wed, 2009-10-21 at 13:36 +1000, Peter Hutterer wrote: > On Tue, Oct 20, 2009 at 08:23:55PM -0700, Jeremy Huddleston wrote: > > I noticed an INSTALL file in xlsclients and libXvMC today, and it > > was quite annoying to work around since 'autoreconf -fvi' replaces > > it and git wants to commit it. Should these files even be in git? > > Can I nuke them for the betterment of humanity and since they get > > created by autoreconf anyways? > > See https://bugs.freedesktop.org/show_bug.cgi?id=24206 As an interim measure, replace AM_INIT_AUTOMAKE([dist-bzip2]) with AM_INIT_AUTOMAKE([foreign dist-bzip2]). This will prevent the generation of the INSTALL file. It is also part of the 24206 solution. Signed-off-by: Jeremy Huddleston <jeremyhu@freedesktop.org>
2009-10-16x11perf 1.5.1x11perf-1.5.1Alan Coopersmith1-1/+1
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
2009-10-16Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONSAlan Coopersmith2-14/+8
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
2009-10-01Add README with pointers to mailing lists, bugzilla, & gitAlan Coopersmith1-0/+24
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
2009-01-13Ansification and compile warning fixes.Paulo Cesar Pereira de Andrade8-28/+41
This also uses XORG_CHANGELOG and XORG_CWARNFLAGS, and corrects make distcheck.
2008-03-07x11perf-1.5x11perf-1.5Adam Jackson1-2/+1
2007-12-06Replace static ChangeLog with dist-hook to generate from git logJames Cloos2-52/+10