~ubuntu-branches/ubuntu/quantal/mesa/quantal

« back to all changes in this revision

Viewing changes to src/mesa/drivers/dri/r200/r200_pixel.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2007-02-21 12:44:07 UTC
  • mfrom: (1.2.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 22.
  • Revision ID: james.westby@ubuntu.com-20070221124407-rgcacs32mycrtadl
ImportĀ upstreamĀ versionĀ 6.5.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
482
482
 
483
483
void r200InitPixelFuncs( GLcontext *ctx )
484
484
{
485
 
   /* Pixel path fallbacks.
486
 
    */
487
 
   ctx->Driver.Accum = _swrast_Accum;
488
 
   ctx->Driver.Bitmap = _swrast_Bitmap;
489
 
   ctx->Driver.CopyPixels = _swrast_CopyPixels;
490
 
   ctx->Driver.DrawPixels = _swrast_DrawPixels;
491
 
   ctx->Driver.ReadPixels = _swrast_ReadPixels;
492
 
 
493
485
   if (!getenv("R200_NO_BLITS")) {
494
486
      ctx->Driver.ReadPixels = r200ReadPixels;  
495
487
      ctx->Driver.DrawPixels = r200DrawPixels;