blob: 93aa8047d1478cb28ed026cf05cbb191b9d129ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/*
* Copyright 2006 The Android Open Source Project
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef SkFDot6Constants_DEFINED
#define SkFDot6Constants_DEFINED
#include "SkTypes.h"
static const int kInverseTableSize = 1024; // SK_FDot6One * 16
extern const int32_t gFDot6INVERSE[kInverseTableSize * 2];
#endif
|