Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/src/java.desktop/share/native/common/font/AccelGlyphCache.h
41153 views
1
/*
2
* Copyright (c) 2003, 2008, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation. Oracle designates this
8
* particular file as subject to the "Classpath" exception as provided
9
* by Oracle in the LICENSE file that accompanied this code.
10
*
11
* This code is distributed in the hope that it will be useful, but WITHOUT
12
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14
* version 2 for more details (a copy is included in the LICENSE file that
15
* accompanied this code).
16
*
17
* You should have received a copy of the GNU General Public License version
18
* 2 along with this work; if not, write to the Free Software Foundation,
19
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20
*
21
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22
* or visit www.oracle.com if you need additional information or have any
23
* questions.
24
*/
25
26
#ifndef AccelGlyphCache_h_Included
27
#define AccelGlyphCache_h_Included
28
29
#ifdef __cplusplus
30
extern "C" {
31
#endif
32
33
#include "jni.h"
34
#include "fontscalerdefs.h"
35
36
typedef void (FlushFunc)();
37
38
typedef struct _CacheCellInfo CacheCellInfo;
39
40
typedef struct {
41
CacheCellInfo *head;
42
CacheCellInfo *tail;
43
unsigned int cacheID;
44
jint width;
45
jint height;
46
jint cellWidth;
47
jint cellHeight;
48
jboolean isFull;
49
FlushFunc *Flush;
50
} GlyphCacheInfo;
51
52
struct _CacheCellInfo {
53
GlyphCacheInfo *cacheInfo;
54
struct GlyphInfo *glyphInfo;
55
// next cell info in the cache's list
56
CacheCellInfo *next;
57
// REMIND: find better name?
58
// next cell info in the glyph's cell list (next Glyph Cache Info)
59
CacheCellInfo *nextGCI;
60
jint timesRendered;
61
jint x;
62
jint y;
63
// number of pixels from the left or right edge not considered touched
64
// by the glyph
65
jint leftOff;
66
jint rightOff;
67
jfloat tx1;
68
jfloat ty1;
69
jfloat tx2;
70
jfloat ty2;
71
};
72
73
GlyphCacheInfo *
74
AccelGlyphCache_Init(jint width, jint height,
75
jint cellWidth, jint cellHeight,
76
FlushFunc *func);
77
CacheCellInfo *
78
AccelGlyphCache_AddGlyph(GlyphCacheInfo *cache, struct GlyphInfo *glyph);
79
void
80
AccelGlyphCache_Invalidate(GlyphCacheInfo *cache);
81
void
82
AccelGlyphCache_AddCellInfo(struct GlyphInfo *glyph, CacheCellInfo *cellInfo);
83
void
84
AccelGlyphCache_RemoveCellInfo(struct GlyphInfo *glyph, CacheCellInfo *cellInfo);
85
CacheCellInfo *
86
AccelGlyphCache_GetCellInfoForCache(struct GlyphInfo *glyph,
87
GlyphCacheInfo *cache);
88
JNIEXPORT void
89
AccelGlyphCache_RemoveAllCellInfos(struct GlyphInfo *glyph);
90
void
91
AccelGlyphCache_Free(GlyphCacheInfo *cache);
92
93
#ifdef __cplusplus
94
};
95
#endif
96
97
#endif /* AccelGlyphCache_h_Included */
98
99