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

« back to all changes in this revision

Viewing changes to src/mesa/drivers/dri/sis/sis_state.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:
861
861
   ctx->Driver.LightModelfv      = sisDDLightModelfv;
862
862
   ctx->Driver.Viewport          = sisDDViewport;
863
863
 
864
 
   /* Pixel path fallbacks. */
865
 
   ctx->Driver.Accum             = _swrast_Accum;
866
 
   ctx->Driver.Bitmap            = _swrast_Bitmap;
867
 
   ctx->Driver.CopyPixels        = _swrast_CopyPixels;
868
 
   ctx->Driver.DrawPixels        = _swrast_DrawPixels;
869
 
   ctx->Driver.ReadPixels        = _swrast_ReadPixels;
870
 
 
 
864
   /* XXX this should go away */
871
865
   ctx->Driver.ResizeBuffers     = sisReAllocateBuffers;
872
 
  /* Swrast hooks for imaging extensions:
873
 
   */
874
 
  ctx->Driver.CopyColorTable     = _swrast_CopyColorTable;
875
 
  ctx->Driver.CopyColorSubTable  = _swrast_CopyColorSubTable;
876
 
  ctx->Driver.CopyConvolutionFilter1D = _swrast_CopyConvolutionFilter1D;
877
 
  ctx->Driver.CopyConvolutionFilter2D = _swrast_CopyConvolutionFilter2D;
878
866
}