1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/gfx/ots/src/gsub.h Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,29 @@ 1.4 +// Copyright (c) 2011 The Chromium Authors. All rights reserved. 1.5 +// Use of this source code is governed by a BSD-style license that can be 1.6 +// found in the LICENSE file. 1.7 + 1.8 +#ifndef OTS_GSUB_H_ 1.9 +#define OTS_GSUB_H_ 1.10 + 1.11 +#include "ots.h" 1.12 + 1.13 +namespace ots { 1.14 + 1.15 +struct OpenTypeGSUB { 1.16 + OpenTypeGSUB() 1.17 + : num_lookups(0), 1.18 + data(NULL), 1.19 + length(0) { 1.20 + } 1.21 + 1.22 + // Number of lookups in GPSUB table 1.23 + uint16_t num_lookups; 1.24 + 1.25 + const uint8_t *data; 1.26 + size_t length; 1.27 +}; 1.28 + 1.29 +} // namespace ots 1.30 + 1.31 +#endif // OTS_GSUB_H_ 1.32 +