aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/GrDistanceFieldAdjustTable.h
blob: f7d8bee0897a4fc37d602e9f7cefbacd125f0b23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
 * Copyright 2015 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#ifndef GrDistanceFieldAdjustTable_DEFINED
#define GrDistanceFieldAdjustTable_DEFINED

#include "SkRefCnt.h"
#include "SkScalar.h"

// Distance field text needs this table to compute a value for use in the fragment shader.
// Because the GrAtlasTextContext can go out of scope before the final flush, this needs to be
// refcnted and malloced
struct GrDistanceFieldAdjustTable : public SkNVRefCnt<GrDistanceFieldAdjustTable> {
    GrDistanceFieldAdjustTable() { this->buildDistanceAdjustTable(); }
    ~GrDistanceFieldAdjustTable() { delete[] fTable; }

    const SkScalar& operator[] (int i) const {
        return fTable[i];
    }

private:
    void buildDistanceAdjustTable();

    SkScalar* fTable;
};

#endif