Home | History | Annotate | Download | only in opts
      1 
      2 /*
      3  * Copyright 2011 Google Inc.
      4  *
      5  * Use of this source code is governed by a BSD-style license that can be
      6  * found in the LICENSE file.
      7  */
      8 
      9 #include "SkBitmapScaler.h"
     10 #include "SkBitmapProcState.h"
     11 
     12 /*  A platform may optionally overwrite any of these with accelerated
     13     versions. On input, these will already have valid function pointers,
     14     so a platform need only overwrite the ones it chooses, based on the
     15     current state (e.g. fBitmap, fInvMatrix, etc.)
     16 
     17     fShaderProc32
     18     fShaderProc16
     19     fMatrixProc
     20     fSampleProc32
     21     fSampleProc32
     22  */
     23 
     24 // empty implementation just uses default supplied function pointers
     25 void SkBitmapProcState::platformProcs() {}
     26 
     27 // empty implementation just uses default supplied function pointers
     28 void SkBitmapScaler::PlatformConvolutionProcs(SkConvolutionProcs*) {}
     29