Skip to content
Snippets Groups Projects
  1. Mar 21, 2012
  2. Mar 20, 2012
  3. Mar 19, 2012
  4. Mar 17, 2012
  5. Mar 16, 2012
  6. Mar 14, 2012
  7. Mar 09, 2012
  8. Mar 05, 2012
    • Neil Roberts's avatar
      mesa: Don't disable fast path for normalized types · 9664fb70
      Neil Roberts authored and Brian Paul's avatar Brian Paul committed
      Mesa has a fast path for the generic fallback when using glReadPixels
      for RGBA data which uses memcpy.  However it was really difficult to
      hit this case because it would not be used if any transferOps are
      enabled.  Any type apart from floating point or non-normalized integer
      types (so any of the common types) would force enabling clamping so
      the fast path could not be used.  This patch makes it ignore clamping
      when determining whether to use the fast path if the data type of the
      buffer is an unsigned normalized type because in that case clamping
      will not have any effect anyway.
      
      https://bugs.freedesktop.org/show_bug.cgi?id=46631
      
      
      
      NOTE: This is a candidate for the 8.0 branch.
      
      Signed-off-by: default avatarBrian Paul <brianp@vmware.com>
      (cherry picked from commit d9c42097)
      9664fb70
  9. Mar 01, 2012
  10. Feb 28, 2012
  11. Feb 27, 2012
    • Tom Stellard's avatar
      r300/compiler: Fix bug when lowering KILP on r300 cards · 82043eb7
      Tom Stellard authored
      KILP instruction inside IF blocks were being lowered to an unconditional
      KIL.  Since r300 doesn't support branching, when the IF's were lowered
      to conditional moves, the KIL would always be executed.  This is not a
      problem with the mesa state tracker, because the GLSL compiler handles
      lowering IF's, but this bug was appearing in the VDPAU state tracker,
      which does not use the GLSL compiler.
      
      (cherry picked from commit 342cac71)
      82043eb7
    • Marek Olšák's avatar
      gallium/rtasm: properly detect SSE and SSE2 · 2845a0be
      Marek Olšák authored
      This should fix crashes on ancient processors.
      (cherry picked from commit 74d30352)
      2845a0be
  12. Feb 17, 2012
  13. Feb 16, 2012
Loading