Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/openjdk-multiarch-jdk8u
Path: blob/aarch64-shenandoah-jdk8u272-b10/jdk/src/share/native/sun/font/layout/GlyphDefinitionTables.cpp
38918 views
1
/*
2
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
3
*
4
* This code is free software; you can redistribute it and/or modify it
5
* under the terms of the GNU General Public License version 2 only, as
6
* published by the Free Software Foundation. Oracle designates this
7
* particular file as subject to the "Classpath" exception as provided
8
* by Oracle in the LICENSE file that accompanied this code.
9
*
10
* This code is distributed in the hope that it will be useful, but WITHOUT
11
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
13
* version 2 for more details (a copy is included in the LICENSE file that
14
* accompanied this code).
15
*
16
* You should have received a copy of the GNU General Public License version
17
* 2 along with this work; if not, write to the Free Software Foundation,
18
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
19
*
20
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
21
* or visit www.oracle.com if you need additional information or have any
22
* questions.
23
*
24
*/
25
26
/*
27
*
28
* (C) Copyright IBM Corp. 1998 - 2004 - All Rights Reserved
29
*
30
*/
31
32
#include "LETypes.h"
33
#include "OpenTypeTables.h"
34
#include "GlyphDefinitionTables.h"
35
#include "LESwaps.h"
36
37
U_NAMESPACE_BEGIN
38
39
const LEReferenceTo<GlyphClassDefinitionTable>
40
GlyphDefinitionTableHeader::getGlyphClassDefinitionTable(const LEReferenceTo<GlyphDefinitionTableHeader>& base,
41
LEErrorCode &success) const
42
{
43
if(LE_FAILURE(success)) return LEReferenceTo<GlyphClassDefinitionTable>();
44
return LEReferenceTo<GlyphClassDefinitionTable>(base, success, SWAPW(glyphClassDefOffset));
45
}
46
47
const LEReferenceTo<AttachmentListTable>
48
GlyphDefinitionTableHeader::getAttachmentListTable(const LEReferenceTo<GlyphDefinitionTableHeader>& base,
49
LEErrorCode &success) const
50
{
51
if(LE_FAILURE(success)) return LEReferenceTo<AttachmentListTable>();
52
return LEReferenceTo<AttachmentListTable>(base, success, SWAPW(attachListOffset));
53
}
54
55
const LEReferenceTo<LigatureCaretListTable>
56
GlyphDefinitionTableHeader::getLigatureCaretListTable(const LEReferenceTo<GlyphDefinitionTableHeader>& base,
57
LEErrorCode &success) const
58
{
59
if(LE_FAILURE(success)) return LEReferenceTo<LigatureCaretListTable>();
60
return LEReferenceTo<LigatureCaretListTable>(base, success, SWAPW(ligCaretListOffset));
61
}
62
63
const LEReferenceTo<MarkAttachClassDefinitionTable>
64
GlyphDefinitionTableHeader::getMarkAttachClassDefinitionTable(const LEReferenceTo<GlyphDefinitionTableHeader>& base,
65
LEErrorCode &success) const
66
{
67
if(LE_FAILURE(success)) return LEReferenceTo<MarkAttachClassDefinitionTable>();
68
return LEReferenceTo<MarkAttachClassDefinitionTable>(base, success, SWAPW(MarkAttachClassDefOffset));
69
}
70
71
U_NAMESPACE_END
72
73