SkFontHost_gamma_none.cpp revision 1cab2921ab279367f8206cdadc9259d12e603548
1
2/*
3 * Copyright 2008 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 */
8
9
10// -----------------------------------------------------------------------------
11// This is a noop gamma implementation for systems where gamma is already
12// corrected, or dealt with in a system wide fashion. For example, on X windows
13// one uses the xgamma utility to set the server-wide gamma correction value.
14// -----------------------------------------------------------------------------
15
16#include "SkFontHost.h"
17
18void SkFontHost::GetGammaTables(const uint8_t* tables[2])
19{
20    tables[0] = NULL;
21    tables[1] = NULL;
22}
23
24