mesa: Changes to 'refs/remotes/origin/gallium-0.1'

Michal Krol michal at kemper.freedesktop.org
Mon Oct 29 13:25:36 UTC 2007


 src/mesa/drivers/dri/intel_winsys/intel_winsys_softpipe.c |    6 
 src/mesa/drivers/x11/xm_api.c                             |    2 
 src/mesa/drivers/x11/xm_surface.c                         |   18 
 src/mesa/drivers/x11/xmesaP.h                             |    4 
 src/mesa/pipe/failover/fo_context.c                       |    2 
 src/mesa/pipe/i915simple/Makefile                         |    1 
 src/mesa/pipe/i915simple/i915_context.c                   |   31 
 src/mesa/pipe/i915simple/i915_context.h                   |    6 
 src/mesa/pipe/i915simple/i915_prim_emit.c                 |    8 
 src/mesa/pipe/i915simple/i915_prim_vbuf.c                 |  413 +++
 src/mesa/pipe/p_context.h                                 |    4 
 src/mesa/pipe/p_util.h                                    |    2 
 src/mesa/pipe/softpipe/sp_context.c                       |   14 
 src/mesa/pipe/softpipe/sp_quad_fs.c                       |    4 
 src/mesa/pipe/softpipe/sp_winsys.h                        |    7 
 src/mesa/pipe/tgsi/exec/tgsi_sse2.c                       |  289 --
 src/mesa/state_tracker/st_cb_drawpixels.c                 |   33 
 src/mesa/state_tracker/st_format.c                        |   70 
 src/mesa/state_tracker/st_mesa_to_tgsi.c                  | 1564 ++++++--------
 19 files changed, 1407 insertions(+), 1071 deletions(-)

commit diffs at http://gitweb.freedesktop.org/?p=mesa/mesa.git;a=summary

New commits:
commit 242b8659e40416f893157c7a0919964dabc957cf
Author: José Fonseca <jrfonseca at tungstengraphics.com>
Date:   Mon Oct 29 12:29:06 2007 +0000

    Fix i915simple build.

commit 1039a755142e2fd45dc291d891c514fdfa7e033c
Author: José Fonseca <jrfonseca at tungstengraphics.com>
Date:   Mon Oct 29 12:14:52 2007 +0000

    Reuse hardware vertice representation.

commit a9e1fcf98a871b182f82dc37c15d0f69bf1a3187
Author: José Fonseca <jrfonseca at tungstengraphics.com>
Date:   Mon Oct 29 11:51:04 2007 +0000

    Enable the vertex buffer stage according to the I915_VBUF environment var.

commit 46aeff5814ae16544874ceafa5bd1e9d6577ca9d
Author: José Fonseca <jrfonseca at tungstengraphics.com>
Date:   Mon Oct 29 11:49:59 2007 +0000

    Get vertex buffer stage in a minimally working state.

commit 02091e0f9c041250ea5abea6a5aa739d8e19c852
Author: José Fonseca <jrfonseca at tungstengraphics.com>
Date:   Mon Oct 29 10:25:02 2007 +0000

    Reserve the accurate number of dwords in the batch buffer.

commit dbb33a9710e64243ba8c69f44a149376300da2aa
Author: José Fonseca <jrfonseca at tungstengraphics.com>
Date:   Fri Oct 26 19:30:04 2007 +0100

    Start a vertex buffer constuction stage for i915 based on Keith's draft done on softpipe.

commit af5061cf5aced1d59d0a051c44ca5f8d633ddb7f
Author: Michal Krol <michal at tungstengraphics.com>
Date:   Mon Oct 29 11:03:37 2007 +0000

    Fix newlines.

commit c1b9f0eb7a4a0feb549218cdec3b7964d4c91bc9
Author: Michal Krol <michal at tungstengraphics.com>
Date:   Sun Oct 28 17:53:02 2007 +0000

    Remove unused static functions.

commit 2bbd714fda7b0fb21184bea8ed0c08f155cba528
Author: Michal Krol <michal at tungstengraphics.com>
Date:   Sun Oct 28 17:48:46 2007 +0000

    Update comments.

commit 3c8121967224f91bfcd5431b4069d66eecbc5952
Author: Michal Krol <michal at tungstengraphics.com>
Date:   Sun Oct 28 17:19:39 2007 +0000

    Replace supported_formats with is_format_supported interface.
    
    The old supported_formats interface returned a list of formats
    supported by a pipe/winsys implementation. This was reasonable
    when gallium had a fixed list of predefined format.
    Now things has changed and the definition of PIPE_FORMAT is
    more flexible.
    The new shiny is_format_supported interface gets PIPE_FORMAT
    as an argument and returns a boolean whether this particular
    format is supported.

commit b85cd7b70096cf7c922aed56ae8255fb4b8f0709
Author: Michal Krol <michal at tungstengraphics.com>
Date:   Sun Oct 28 16:36:07 2007 +0000

    Use FREE and MALLOC instead of free and malloc.

commit 2953415223fc61e92305453d60714c7e919b604d
Author: Michal Krol <michal at tungstengraphics.com>
Date:   Sun Oct 28 16:16:28 2007 +0000

    Rework sse-utility function calls.

commit c5ad88e9f1d6a915d9464df0b8fa4de65a3513d2
Author: michal <michal at michal-laptop.(none)>
Date:   Sun Oct 28 14:42:26 2007 +0000

    Declare temporaries in a more compact fashion.
    
    The following declarations:
       DCL TEMP[0]
       DCL TEMP[1]
       DCL TEMP[2]
       DCL TEMP[4]
    become:
       DCL TEMP[0..2]
       DCL TEMP[4]




More information about the mesa-commit mailing list