blob: 88aaa93e21a005b9a1af8c7abc68465cf9109111 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
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 */
humper4f96ab32014-06-27 11:27:03 -07008
9#include "SkBitmapScaler.h"
reed@android.comc9a1d4b2009-08-03 15:05:55 +000010#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
25void SkBitmapProcState::platformProcs() {}
humper@google.com138ebc32013-07-19 20:20:04 +000026
27// empty implementation just uses default supplied function pointers
humper4f96ab32014-06-27 11:27:03 -070028void SkBitmapScaler::PlatformConvolutionProcs(SkConvolutionProcs*) {}