mesa: Changes to 'gallium-0.1'

Jose Fonseca jrfonseca at kemper.freedesktop.org
Sun Jul 13 14:42:28 UTC 2008


The branch, gallium-0.1 has been updated
        Commits at: http://cgit.freedesktop.org/mesa/mesa/log/?h=gallium-0.1

Summary of changes:
 SConstruct                                         |    7 +-
 src/gallium/SConscript                             |    2 +
 src/gallium/auxiliary/pipebuffer/pb_bufmgr_debug.c |    4 +-
 src/gallium/auxiliary/util/p_tile.c                |   42 +--
 src/gallium/auxiliary/util/p_tile.h                |   19 +-
 src/gallium/drivers/softpipe/sp_tile_cache.c       |   16 +-
 src/gallium/state_trackers/python/README           |   32 ++
 src/gallium/state_trackers/python/SConscript       |   24 +
 src/gallium/state_trackers/python/gallium.i        |  448 ++++++++++++++++++++
 src/gallium/state_trackers/python/p_format.i       |  152 +++++++
 .../state_trackers/python/samples/simple.py        |  158 +++++++
 src/gallium/state_trackers/python/st_device.c      |  169 ++++++++
 src/gallium/state_trackers/python/st_device.h      |   83 ++++
 .../state_trackers/python/st_softpipe_winsys.c     |  321 ++++++++++++++
 src/gallium/state_trackers/python/st_winsys.h      |   58 +++
 src/mesa/drivers/x11/xm_surface.c                  |    4 +-
 src/mesa/state_tracker/st_cb_accum.c               |   12 +-
 src/mesa/state_tracker/st_cb_drawpixels.c          |    8 +-
 src/mesa/state_tracker/st_cb_readpixels.c          |   10 +-
 src/mesa/state_tracker/st_cb_texture.c             |    8 +-
 20 files changed, 1503 insertions(+), 74 deletions(-)
 create mode 100644 src/gallium/state_trackers/python/README
 create mode 100644 src/gallium/state_trackers/python/SConscript
 create mode 100644 src/gallium/state_trackers/python/gallium.i
 create mode 100644 src/gallium/state_trackers/python/p_format.i
 create mode 100644 src/gallium/state_trackers/python/samples/simple.py
 create mode 100644 src/gallium/state_trackers/python/st_device.c
 create mode 100644 src/gallium/state_trackers/python/st_device.h
 create mode 100644 src/gallium/state_trackers/python/st_softpipe_winsys.c
 create mode 100644 src/gallium/state_trackers/python/st_winsys.h

       via  6410e94b966148dde81b5121e53a250d7b530d91 (commit)
       via  36dd89c8a7f2a911e8f7f18d1edcaf982a75a438 (commit)
       via  17af66fc1a141920969ddf404bd7ffb52a94fb31 (commit)
      from  f5c51ebd2afdfc87de40dca115526a5e0f6ab115 (commit)


- Commits -----------------------------------------------
commit 6410e94b966148dde81b5121e53a250d7b530d91
Author: José Fonseca <jrfonseca at tungstengraphics.com>
Date:   Sun Jul 13 23:36:59 2008 +0900

    python: New state tracker which exposes the pipe driver to python scripts.
    
    Still under development. Just barely works.

commit 36dd89c8a7f2a911e8f7f18d1edcaf982a75a438
Author: José Fonseca <jrfonseca at tungstengraphics.com>
Date:   Sun Jul 13 22:39:58 2008 +0900

    util: Eliminate pipe from the arguments to pipe_get/put_tile_xxx functions.
    
    You don't need a pipe_context * for this, and all other necessary info is
    already inside pipe_surface.

commit 17af66fc1a141920969ddf404bd7ffb52a94fb31
Author: José Fonseca <jrfonseca at tungstengraphics.com>
Date:   Sun Jul 13 22:37:47 2008 +0900

    pb: buffer over/underflows are errors.

---------------------------------




More information about the mesa-commit mailing list