Skip to content
This repository has been archived by the owner on Mar 7, 2021. It is now read-only.

Commits

Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?

Commits on Feb 23, 2019

  1. merge upstream changes

    totaam committed Feb 23, 2019
    Copy the full SHA
    adcfe28 View commit details
    Browse the repository at this point in the history

Commits on Nov 25, 2018

  1. Update configure.ac bug URL for gitlab migration

    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    alanc committed Nov 25, 2018
    Copy the full SHA
    850c051 View commit details
    Browse the repository at this point in the history

Commits on Nov 18, 2018

  1. Update README for gitlab migration

    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    alanc committed Nov 18, 2018
    Copy the full SHA
    ea2ad21 View commit details
    Browse the repository at this point in the history

Commits on Aug 14, 2017

  1. Support for 30 bit depth in dummy driver

    This patch makes it possible to start the server using the dummy driver
    with a 30 bit depth.  The colormap size is changed from 256 to 1024 to
    prevent crashes.
    
    Reviewed-by: Adam Jackson <ajax@redhat.com>
    totaam authored and nwnk committed Aug 14, 2017
    Copy the full SHA
    bc8546e View commit details
    Browse the repository at this point in the history

Commits on Aug 6, 2017

  1. DUMMYGetRec: Fix misleading indentation

    GCC's -Wmisleading-indentation complains about this
    
      dummy_driver.c: In function ‘DUMMYGetRec’:
      dummy_driver.c:181:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation]
           if (pScrn->driverPrivate == NULL)
           ^~
      dummy_driver.c:183:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’
               return TRUE;
               ^~~~~~
    
    Signed-off-by: Aaron Plattner <aplattner@nvidia.com>
    aaronp24 committed Aug 6, 2017
    Copy the full SHA
    5e90221 View commit details
    Browse the repository at this point in the history
  2. fix a memory leak in probe

    Signed-off-by: Xiaolei Yu <dreifachstein@gmail.com>
    Reviewed-by: Antoine Martin <antoine@nagafix.co.uk>
    Tested-by: Antoine Martin <antoine@nagafix.co.uk>
    Signed-off-by: Aaron Plattner <aplattner@nvidia.com>
    dreifachstein authored and aaronp24 committed Aug 6, 2017
    Copy the full SHA
    7957ad8 View commit details
    Browse the repository at this point in the history

Commits on Aug 5, 2017

  1. Get rid of dPtr->FBBase

    The pointer to the screen's pixels is stored in the screen pixmap's
    devPrivate.ptr field.  Just use that instead of storing it
    redundantly.
    
    Signed-off-by: Aaron Plattner <aplattner@nvidia.com>
    Reviewed-by: Bob Terek <xorg@esoterek.com>
    Tested-by: Antoine Martin <antoine@nagafix.co.uk>
    aaronp24 committed Aug 5, 2017
    Copy the full SHA
    33e6818 View commit details
    Browse the repository at this point in the history
  2. Remove DGA support

    DGA was so 2004.
    
    Signed-off-by: Aaron Plattner <aplattner@nvidia.com>
    Reviewed-by: Bob Terek <xorg@esoterek.com>
    Tested-by: Antoine Martin <antoine@nagafix.co.uk>
    aaronp24 committed Aug 5, 2017
    Copy the full SHA
    87249af View commit details
    Browse the repository at this point in the history
  3. Delete dPtr->screenSaver

    This is assigned, but never used.
    
    Signed-off-by: Aaron Plattner <aplattner@nvidia.com>
    Reviewed-by: Bob Terek <xorg@esoterek.com>
    Tested-by: Antoine Martin <antoine@nagafix.co.uk>
    aaronp24 committed Aug 5, 2017
    Copy the full SHA
    7c3b090 View commit details
    Browse the repository at this point in the history
  4. Delete XV stuff

    As far as I can tell, this was never implemented or used.
    
    Signed-off-by: Aaron Plattner <aplattner@nvidia.com>
    Reviewed-by: Bob Terek <xorg@esoterek.com>
    Tested-by: Antoine Martin <antoine@nagafix.co.uk>
    aaronp24 committed Aug 5, 2017
    Copy the full SHA
    12e3e20 View commit details
    Browse the repository at this point in the history
  5. fix a memory leak in probe

    Signed-off-by: Xiaolei Yu <dreifachstein@gmail.com>
    Reviewed-by: Antoine Martin <antoine@nagafix.co.uk>
    Tested-by: Antoine Martin <antoine@nagafix.co.uk>
    dreifachstein authored and totaam committed Aug 5, 2017
    Copy the full SHA
    cbb59d7 View commit details
    Browse the repository at this point in the history
  6. support for 30 bit depth in dummy driver

    This patch makes it possible to start the server using the dummy
    driver with a 30 bit depth.
    The colormap size is changed from 256 to 1024 to prevent crashes.
    
    Signed-off-by: Antoine Martin <antoine@nagafix.co.uk>
    totaam committed Aug 5, 2017
    Copy the full SHA
    d5a4b38 View commit details
    Browse the repository at this point in the history
  7. [PATCH xf86-video-dummy 5/6] Get rid of dPtr->FBBase

    The pointer to the screen's pixels is stored in the screen pixmap's
    devPrivate.ptr field.  Just use that instead of storing it
    redundantly.
    
    Signed-off-by: Aaron Plattner <aplattner@nvidia.com>
    Reviewed-by: Bob Terek <xorg@esoterek.com>
    Tested-by: Antoine Martin <antoine@nagafix.co.uk>
    aaronp24 authored and totaam committed Aug 5, 2017
    Copy the full SHA
    58b4921 View commit details
    Browse the repository at this point in the history
  8. [PATCH xf86-video-dummy 4/6] Remove DGA support

    DGA was so 2004.
    
    Signed-off-by: Aaron Plattner <aplattner@nvidia.com>
    Reviewed-by: Bob Terek <xorg@esoterek.com>
    Tested-by: Antoine Martin <antoine@nagafix.co.uk>
    aaronp24 authored and totaam committed Aug 5, 2017
    Copy the full SHA
    9db6dd1 View commit details
    Browse the repository at this point in the history
  9. [PATCH xf86-video-dummy 3/6] Delete dPtr->screenSaver

    This is assigned, but never used.
    
    Signed-off-by: Aaron Plattner <aplattner@nvidia.com>
    Reviewed-by: Bob Terek <xorg@esoterek.com>
    Tested-by: Antoine Martin <antoine@nagafix.co.uk>
    aaronp24 authored and totaam committed Aug 5, 2017
    Copy the full SHA
    b3495a3 View commit details
    Browse the repository at this point in the history
  10. [PATCH xf86-video-dummy 2/6] Delete XV stuff

    As far as I can tell, this was never implemented or used.
    
    Signed-off-by: Aaron Plattner <aplattner@nvidia.com>
    Reviewed-by: Bob Terek <xorg@esoterek.com>
    Tested-by: Antoine Martin <antoine@nagafix.co.uk>
    aaronp24 authored and totaam committed Aug 5, 2017
    Copy the full SHA
    57388b0 View commit details
    Browse the repository at this point in the history

Commits on Jan 26, 2017

  1. autogen: add default patch prefix

    Signed-off-by: Mihail Konev <k.mvc@ya.ru>
    forgottenswitch authored and whot committed Jan 26, 2017
    Copy the full SHA
    af0f808 View commit details
    Browse the repository at this point in the history
  2. autogen.sh: use quoted string variables

    Place quotes around the $srcdir, $ORIGDIR and $0 variables to prevent
    fall-outs, when they contain space.
    
    Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
    evelikov authored and whot committed Jan 26, 2017
    Copy the full SHA
    50ba553 View commit details
    Browse the repository at this point in the history
  3. autogen.sh: use exec instead of waiting for configure to finish

    Syncs the invocation of configure with the one from the server.
    
    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
    Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
    whot committed Jan 26, 2017
    Copy the full SHA
    049573b View commit details
    Browse the repository at this point in the history

Commits on Dec 14, 2016

  1. xf86-video-dummy 0.3.8

    Signed-off-by: Julien Cristau <jcristau@debian.org>
    jcristau committed Dec 14, 2016
    Copy the full SHA
    4a6df6b View commit details
    Browse the repository at this point in the history
  2. configure: require xorg-server 1.4.99.901

    dixChangeWindowProperty was introduced in that release.
    
    Signed-off-by: Julien Cristau <jcristau@debian.org>
    jcristau committed Dec 14, 2016
    Copy the full SHA
    52a6346 View commit details
    Browse the repository at this point in the history

Commits on Oct 28, 2016

  1. Remove pointless empty functions

    These functions might be useful in a real driver, but with no
    hardware, they're pointless.  Get rid of them.
    
    v2: Rebase, get rid of pointless calls to DUMMYAdjustFrame, return TRUE from
    DUMMYSwitchMode.
    
    Signed-off-by: Aaron Plattner <aplattner@nvidia.com>
    Reviewed-by: Antoine Martin <antoine@nagafix.co.uk>
    Tested-by: Antoine Martin <antoine@nagafix.co.uk>
    aaronp24 committed Oct 28, 2016
    Copy the full SHA
    e434975 View commit details
    Browse the repository at this point in the history

Commits on Sep 21, 2016

  1. remove dead code in dummy driver

    Signed-off-by: Antoine Martin <antoine@nagafix.co.uk>
    Reviewed-by: Eric Engestrom <eric.engestrom@imgtec.com>
    Reviewed-by: Aaron Plattner <aplattner@nvidia.com>
    Signed-off-by: Aaron Plattner <aplattner@nvidia.com>
    totaam authored and aaronp24 committed Sep 21, 2016
    Copy the full SHA
    367c778 View commit details
    Browse the repository at this point in the history

Commits on Feb 4, 2016

  1. Switch to using dixChangeWindowProperty

    eb36924ead40564325aa56d54a973dc8fb4eae83 removed ChangeWindowProperty from the
    server.
    
    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
    Reviewed-by: Jon Turney <jon.turney@dronecode.org.uk>
    whot committed Feb 4, 2016
    Copy the full SHA
    8706f60 View commit details
    Browse the repository at this point in the history

Commits on Sep 17, 2015

  1. Honor DacSpeed setting in xorg.conf

    Reviewed-by: Adam Jackson <ajax@redhat.com>
    Signed-off-by: Antoine Martin <antoine@nagafix.co.uk>
    totaam authored and nwnk committed Sep 17, 2015
    Copy the full SHA
    2943384 View commit details
    Browse the repository at this point in the history

Commits on Jun 5, 2014

  1. autogen.sh: Honor NOCONFIGURE=1

    See http://people.gnome.org/~walters/docs/build-api.txt
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    alanc committed Jun 5, 2014
    Copy the full SHA
    0e339b2 View commit details
    Browse the repository at this point in the history
  2. configure: Drop AM_MAINTAINER_MODE

    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    alanc committed Jun 5, 2014
    Copy the full SHA
    8540225 View commit details
    Browse the repository at this point in the history

Commits on Sep 9, 2013

  1. Bump to 0.3.7

    Signed-off-by: Julien Cristau <jcristau@debian.org>
    jcristau committed Sep 9, 2013
    Copy the full SHA
    4160421 View commit details
    Browse the repository at this point in the history

Commits on Sep 25, 2012

  1. Remove mibstore.h

    Signed-off-by: Adam Jackson <ajax@redhat.com>
    nwnk committed Sep 25, 2012
    Copy the full SHA
    44f04fd View commit details
    Browse the repository at this point in the history

Commits on Jul 18, 2012

  1. dummy: bump to 0.3.6 for release

    Signed-off-by: Dave Airlie <airlied@redhat.com>
    airlied committed Jul 18, 2012
    Copy the full SHA
    fee6b52 View commit details
    Browse the repository at this point in the history

Commits on Jun 5, 2012

  1. dummy: convert to the new server APIs.

    Signed-off-by: Dave Airlie <airlied@redhat.com>
    airlied committed Jun 5, 2012
    Copy the full SHA
    1491470 View commit details
    Browse the repository at this point in the history

Commits on May 23, 2012

  1. dummy: convert to new scrn conversion APIs.

    Generated from util/modular/x-driver-screen-scrn-conv.sh
    
    Signed-off-by: Dave Airlie <airlied@redhat.com>
    airlied committed May 23, 2012
    Copy the full SHA
    6ff6129 View commit details
    Browse the repository at this point in the history
  2. dummy: add scrn conversion api compat header.

    Signed-off-by: Dave Airlie <airlied@redhat.com>
    airlied committed May 23, 2012
    Copy the full SHA
    20fcd59 View commit details
    Browse the repository at this point in the history

Commits on Apr 6, 2012

  1. Add XORG_LIBS to LIBADD

    This affects only Cygwin, where drivers must be linked against the
    Xorg implib.  On other systems, XORG_LIBS will be empty.
    
    Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
    yselkowitz committed Apr 6, 2012
    Copy the full SHA
    a78d524 View commit details
    Browse the repository at this point in the history
  2. Only include Xv headers if server supports it

    Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
    yselkowitz committed Apr 6, 2012
    Copy the full SHA
    668223a View commit details
    Browse the repository at this point in the history
Older