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

« back to all changes in this revision

Viewing changes to src/mesa/drivers/dri/i810/i810state.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:
995
995
   } else {
996
996
      ctx->Driver.LightModelfv = i810LightModelfv;
997
997
   }
998
 
 
999
 
   /* Pixel path fallbacks.
1000
 
    */
1001
 
   ctx->Driver.Accum = _swrast_Accum;
1002
 
   ctx->Driver.Bitmap = _swrast_Bitmap;
1003
 
   ctx->Driver.CopyPixels = _swrast_CopyPixels;
1004
 
   ctx->Driver.DrawPixels = _swrast_DrawPixels;
1005
 
   ctx->Driver.ReadPixels = _swrast_ReadPixels;
1006
 
 
1007
 
   /* Swrast hooks for imaging extensions:
1008
 
    */
1009
 
   ctx->Driver.CopyColorTable = _swrast_CopyColorTable;
1010
 
   ctx->Driver.CopyColorSubTable = _swrast_CopyColorSubTable;
1011
 
   ctx->Driver.CopyConvolutionFilter1D = _swrast_CopyConvolutionFilter1D;
1012
 
   ctx->Driver.CopyConvolutionFilter2D = _swrast_CopyConvolutionFilter2D;
1013
998
}