aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ports/SkFontHost_gamma_none.cpp
blob: 18f113c888a90da4009c036ff022c5f6d0cc10dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

/*
 * Copyright 2008 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */


// -----------------------------------------------------------------------------
// This is a noop gamma implementation for systems where gamma is already
// corrected, or dealt with in a system wide fashion. For example, on X windows
// one uses the xgamma utility to set the server-wide gamma correction value.
// -----------------------------------------------------------------------------

#include "SkFontHost.h"

void SkFontHost::GetGammaTables(const uint8_t* tables[2])
{
    tables[0] = NULL;
    tables[1] = NULL;
}