xref: /aosp_15_r20/external/skia/src/text/gpu/DistanceFieldAdjustTable.h (revision c8dee2aa9b3f27cf6c858bd81872bdeb2c07ed17)
1 /*
2  * Copyright 2015 Google Inc.
3  *
4  * Use of this source code is governed by a BSD-style license that can be
5  * found in the LICENSE file.
6  */
7 
8 #ifndef sktext_gpu_DistanceFieldAdjustTable_DEFINED
9 #define sktext_gpu_DistanceFieldAdjustTable_DEFINED
10 
11 #include "include/core/SkScalar.h"
12 
13 template <typename T> class SkNoDestructor;
14 
15 namespace sktext::gpu {
16 
17 // Distance field text needs this table to compute a value for use in the fragment shader.
18 class DistanceFieldAdjustTable {
19 public:
20     static const DistanceFieldAdjustTable* Get();
21 
~DistanceFieldAdjustTable()22     ~DistanceFieldAdjustTable() {
23         delete[] fTable;
24         delete[] fGammaCorrectTable;
25     }
26 
getAdjustment(int lum,bool useGammaCorrectTable)27     SkScalar getAdjustment(int lum, bool useGammaCorrectTable) const {
28         lum >>= kDistanceAdjustLumShift;
29         return useGammaCorrectTable ? fGammaCorrectTable[lum] : fTable[lum];
30     }
31 
32 private:
33     DistanceFieldAdjustTable();
34 
35     static constexpr int kDistanceAdjustLumShift = 5;
36 
37     SkScalar* fTable;
38     SkScalar* fGammaCorrectTable;
39 
40     friend class SkNoDestructor<DistanceFieldAdjustTable>;
41 };
42 
43 }  // namespace sktext::gpu
44 
45 #endif
46