Skip to content

Commit 3f175b1

Browse files
phraktleclaude
andauthored
chore(deps): refresh extension submodules (#384)
Bump four vendored extension submodules to their latest commits: - imnodes: 8563e16 -> b2ec254 (bug-fix only, no header changes) - imguizmo: bcdd86b -> a15acd8 (additive: new IsUsingViewManipulate / IsViewManipulateHovered / SetAlternativeWindow upstream; not yet surfaced in Java binding -- can be added in a follow-up) - imgui-knobs: 4f20752 -> 8a43bf7 (adds DragVertical / Logarithmic / AlwaysClamp flags; Knob/KnobInt's `format` default changed from NULL to "%.3f"/"%i" upstream -- binding callValue updated to match so omitting `format` keeps the historical default behavior) - imgui_club: 18f9fea -> a7eab6c (MemoryEditor::Sizes fields renamed PosHexStart/End/PosAsciiStart/End -> OffsetHexMinX/MaxX/ OffsetAsciiMinX/MaxX; typo fix PreviewEndianess -> PreviewEndianness upstream, not exposed in binding so invisible to callers) Breaking for Java consumers: MemoryEditorSizes field renames. The removed getters/setters rename to their new equivalents one-for-one (e.g. getPosHexStart -> getOffsetHexMinX). Verified: :imgui-binding:generateLibs + :example:run on JDK 24 + macOS arm64 (x86_64 dylib); all existing demos still render. Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent a7ff738 commit 3f175b1

12 files changed

Lines changed: 159 additions & 61 deletions

File tree

buildSrc/src/main/resources/generator/api/ast/ast-ImGuizmo.json

Lines changed: 42 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"info" : {
33
"source" : "include/imguizmo/ImGuizmo.h",
4-
"hash" : "330da82032707d5d2f3bd3f474934613",
4+
"hash" : "2f33204f2525b4020b351801ba051c26",
55
"url" : "https://github.com/CedricGuillemet/ImGuizmo.git",
6-
"revision" : "bcdd86bb8a8019b373e46921c52ef7f2fdaa8b16"
6+
"revision" : "a15acd87a3f3241a29ea1363ceafc680dca3a96b"
77
},
88
"decls" : [ {
99
"@type" : "AstNamespaceDecl",
@@ -17,7 +17,7 @@
1717
"name" : "drawlist",
1818
"qualType" : "int *",
1919
"desugaredQualType" : "int *",
20-
"defaultValue" : "="
20+
"defaultValue" : "nullptr"
2121
}, {
2222
"@type" : "AstFullComment",
2323
"decls" : [ {
@@ -101,6 +101,34 @@
101101
} ]
102102
} ]
103103
} ]
104+
}, {
105+
"@type" : "AstFunctionDecl",
106+
"name" : "IsUsingViewManipulate",
107+
"resultType" : "bool",
108+
"decls" : [ {
109+
"@type" : "AstFullComment",
110+
"decls" : [ {
111+
"@type" : "AstParagraphComment",
112+
"decls" : [ {
113+
"@type" : "AstTextComment",
114+
"text" : " return true if the view gizmo is in moving state"
115+
} ]
116+
} ]
117+
} ]
118+
}, {
119+
"@type" : "AstFunctionDecl",
120+
"name" : "IsViewManipulateHovered",
121+
"resultType" : "bool",
122+
"decls" : [ {
123+
"@type" : "AstFullComment",
124+
"decls" : [ {
125+
"@type" : "AstParagraphComment",
126+
"decls" : [ {
127+
"@type" : "AstTextComment",
128+
"text" : " only check if your mouse is over the view manipulator - no matter whether it's active or not"
129+
} ]
130+
} ]
131+
} ]
104132
}, {
105133
"@type" : "AstFunctionDecl",
106134
"name" : "IsUsingAny",
@@ -344,7 +372,7 @@
344372
"text" : " call it when you want a gizmo"
345373
}, {
346374
"@type" : "AstTextComment",
347-
"text" : " Needs view and projection matrices. "
375+
"text" : " Needs view and projection matrices."
348376
}, {
349377
"@type" : "AstTextComment",
350378
"text" : " matrix parameter is the source matrix (where will be gizmo be drawn) and might be transformed by the function. Return deltaMatrix is optional"
@@ -662,6 +690,16 @@
662690
} ]
663691
} ]
664692
} ]
693+
}, {
694+
"@type" : "AstFunctionDecl",
695+
"name" : "SetAlternativeWindow",
696+
"resultType" : "void",
697+
"decls" : [ {
698+
"@type" : "AstParmVarDecl",
699+
"name" : "window",
700+
"qualType" : "ImGuiWindow *",
701+
"desugaredQualType" : "ImGuiWindow *"
702+
} ]
665703
}, {
666704
"@type" : "AstFunctionDecl",
667705
"name" : "SetID",

buildSrc/src/main/resources/generator/api/ast/ast-imgui-knobs.json

Lines changed: 49 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"info" : {
33
"source" : "include/imgui-knobs/imgui-knobs.h",
4-
"hash" : "1f637f21a158aff7116bdb283dc83d46",
4+
"hash" : "c27d15f1e6a3d155f490dd963d2ff856",
55
"url" : "https://github.com/altschuler/imgui-knobs",
6-
"revision" : "4f207526f9ef036a0aff7edfaad92cfbe12d987a"
6+
"revision" : "8a43bf7b31c4166ec50f3a52c382c2cc66a91516"
77
},
88
"decls" : [ {
99
"@type" : "AstEnumDecl",
@@ -36,6 +36,27 @@
3636
"order" : 3,
3737
"value" : "1 << 3",
3838
"evaluatedValue" : 8
39+
}, {
40+
"@type" : "AstEnumConstantDecl",
41+
"name" : "ImGuiKnobFlags_DragVertical",
42+
"qualType" : "ImGuiKnobFlags_",
43+
"order" : 4,
44+
"value" : "1 << 4",
45+
"evaluatedValue" : 16
46+
}, {
47+
"@type" : "AstEnumConstantDecl",
48+
"name" : "ImGuiKnobFlags_Logarithmic",
49+
"qualType" : "ImGuiKnobFlags_",
50+
"order" : 5,
51+
"value" : "1 << 5",
52+
"evaluatedValue" : 32
53+
}, {
54+
"@type" : "AstEnumConstantDecl",
55+
"name" : "ImGuiKnobFlags_AlwaysClamp",
56+
"qualType" : "ImGuiKnobFlags_",
57+
"order" : 6,
58+
"value" : "1 << 6",
59+
"evaluatedValue" : 64
3960
} ]
4061
}, {
4162
"@type" : "AstEnumDecl",
@@ -147,7 +168,7 @@
147168
"name" : "format",
148169
"qualType" : "const char *",
149170
"desugaredQualType" : "const char *",
150-
"defaultValue" : "NULL"
171+
"defaultValue" : "\"%.3f\""
151172
}, {
152173
"@type" : "AstParmVarDecl",
153174
"name" : "variant",
@@ -172,6 +193,18 @@
172193
"qualType" : "int",
173194
"desugaredQualType" : "int",
174195
"defaultValue" : "10"
196+
}, {
197+
"@type" : "AstParmVarDecl",
198+
"name" : "angle_min",
199+
"qualType" : "float",
200+
"desugaredQualType" : "float",
201+
"defaultValue" : "-1"
202+
}, {
203+
"@type" : "AstParmVarDecl",
204+
"name" : "angle_max",
205+
"qualType" : "float",
206+
"desugaredQualType" : "float",
207+
"defaultValue" : "-1"
175208
} ]
176209
}, {
177210
"@type" : "AstFunctionDecl",
@@ -208,7 +241,7 @@
208241
"name" : "format",
209242
"qualType" : "const char *",
210243
"desugaredQualType" : "const char *",
211-
"defaultValue" : "NULL"
244+
"defaultValue" : "\"%i\""
212245
}, {
213246
"@type" : "AstParmVarDecl",
214247
"name" : "variant",
@@ -233,6 +266,18 @@
233266
"qualType" : "int",
234267
"desugaredQualType" : "int",
235268
"defaultValue" : "10"
269+
}, {
270+
"@type" : "AstParmVarDecl",
271+
"name" : "angle_min",
272+
"qualType" : "float",
273+
"desugaredQualType" : "float",
274+
"defaultValue" : "-1"
275+
}, {
276+
"@type" : "AstParmVarDecl",
277+
"name" : "angle_max",
278+
"qualType" : "float",
279+
"desugaredQualType" : "float",
280+
"defaultValue" : "-1"
236281
} ]
237282
} ]
238283
} ]

buildSrc/src/main/resources/generator/api/ast/ast-imnodes.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"source" : "include/imnodes/imnodes.h",
44
"hash" : "4ea12e1472e9f121b5084ac0b72237de",
55
"url" : "https://github.com/Nelarius/imnodes",
6-
"revision" : "8563e1655bd9bb1f249e6552cc6274d506ee788b"
6+
"revision" : "b2ec254ce576ac3d42dfb7aef61deadbff8e7211"
77
},
88
"decls" : [ {
99
"@type" : "AstEnumDecl",

imgui-binding/src/generated/java/imgui/extension/imguiknobs/ImGuiKnobs.java

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ public static boolean knob(final String label, final ImFloat pValue, final float
438438
private static native boolean nKnob(String obj_label, float[] obj_pValue, float vMin, float vMax, int variant, float size, int flags, int steps); /*MANUAL
439439
auto label = obj_label == NULL ? NULL : (char*)env->GetStringUTFChars(obj_label, JNI_FALSE);
440440
auto pValue = obj_pValue == NULL ? NULL : (float*)env->GetPrimitiveArrayCritical(obj_pValue, JNI_FALSE);
441-
auto _result = ImGuiKnobs::Knob(label, (pValue != NULL ? &pValue[0] : NULL), vMin, vMax, 0, NULL, variant, size, flags, steps);
441+
auto _result = ImGuiKnobs::Knob(label, (pValue != NULL ? &pValue[0] : NULL), vMin, vMax, 0, "%.3f", variant, size, flags, steps);
442442
if (label != NULL) env->ReleaseStringUTFChars(obj_label, label);
443443
if (pValue != NULL) env->ReleasePrimitiveArrayCritical(obj_pValue, pValue, JNI_FALSE);
444444
return _result;
@@ -447,7 +447,7 @@ public static boolean knob(final String label, final ImFloat pValue, final float
447447
private static native boolean nKnob(String obj_label, float[] obj_pValue, float vMin, float vMax, float speed, int variant, float size, int flags, int steps); /*MANUAL
448448
auto label = obj_label == NULL ? NULL : (char*)env->GetStringUTFChars(obj_label, JNI_FALSE);
449449
auto pValue = obj_pValue == NULL ? NULL : (float*)env->GetPrimitiveArrayCritical(obj_pValue, JNI_FALSE);
450-
auto _result = ImGuiKnobs::Knob(label, (pValue != NULL ? &pValue[0] : NULL), vMin, vMax, speed, NULL, variant, size, flags, steps);
450+
auto _result = ImGuiKnobs::Knob(label, (pValue != NULL ? &pValue[0] : NULL), vMin, vMax, speed, "%.3f", variant, size, flags, steps);
451451
if (label != NULL) env->ReleaseStringUTFChars(obj_label, label);
452452
if (pValue != NULL) env->ReleasePrimitiveArrayCritical(obj_pValue, pValue, JNI_FALSE);
453453
return _result;
@@ -456,7 +456,7 @@ public static boolean knob(final String label, final ImFloat pValue, final float
456456
private static native boolean nKnob(String obj_label, float[] obj_pValue, float vMin, float vMax, float speed, float size, int flags, int steps); /*MANUAL
457457
auto label = obj_label == NULL ? NULL : (char*)env->GetStringUTFChars(obj_label, JNI_FALSE);
458458
auto pValue = obj_pValue == NULL ? NULL : (float*)env->GetPrimitiveArrayCritical(obj_pValue, JNI_FALSE);
459-
auto _result = ImGuiKnobs::Knob(label, (pValue != NULL ? &pValue[0] : NULL), vMin, vMax, speed, NULL, ImGuiKnobVariant_Tick, size, flags, steps);
459+
auto _result = ImGuiKnobs::Knob(label, (pValue != NULL ? &pValue[0] : NULL), vMin, vMax, speed, "%.3f", ImGuiKnobVariant_Tick, size, flags, steps);
460460
if (label != NULL) env->ReleaseStringUTFChars(obj_label, label);
461461
if (pValue != NULL) env->ReleasePrimitiveArrayCritical(obj_pValue, pValue, JNI_FALSE);
462462
return _result;
@@ -465,7 +465,7 @@ public static boolean knob(final String label, final ImFloat pValue, final float
465465
private static native boolean nKnob(String obj_label, float[] obj_pValue, float vMin, float vMax, float speed, int flags, int steps); /*MANUAL
466466
auto label = obj_label == NULL ? NULL : (char*)env->GetStringUTFChars(obj_label, JNI_FALSE);
467467
auto pValue = obj_pValue == NULL ? NULL : (float*)env->GetPrimitiveArrayCritical(obj_pValue, JNI_FALSE);
468-
auto _result = ImGuiKnobs::Knob(label, (pValue != NULL ? &pValue[0] : NULL), vMin, vMax, speed, NULL, ImGuiKnobVariant_Tick, 0, flags, steps);
468+
auto _result = ImGuiKnobs::Knob(label, (pValue != NULL ? &pValue[0] : NULL), vMin, vMax, speed, "%.3f", ImGuiKnobVariant_Tick, 0, flags, steps);
469469
if (label != NULL) env->ReleaseStringUTFChars(obj_label, label);
470470
if (pValue != NULL) env->ReleasePrimitiveArrayCritical(obj_pValue, pValue, JNI_FALSE);
471471
return _result;
@@ -474,7 +474,7 @@ public static boolean knob(final String label, final ImFloat pValue, final float
474474
private static native boolean nKnob(String obj_label, float[] obj_pValue, float vMin, float vMax, float speed, int steps); /*MANUAL
475475
auto label = obj_label == NULL ? NULL : (char*)env->GetStringUTFChars(obj_label, JNI_FALSE);
476476
auto pValue = obj_pValue == NULL ? NULL : (float*)env->GetPrimitiveArrayCritical(obj_pValue, JNI_FALSE);
477-
auto _result = ImGuiKnobs::Knob(label, (pValue != NULL ? &pValue[0] : NULL), vMin, vMax, speed, NULL, ImGuiKnobVariant_Tick, 0, 0, steps);
477+
auto _result = ImGuiKnobs::Knob(label, (pValue != NULL ? &pValue[0] : NULL), vMin, vMax, speed, "%.3f", ImGuiKnobVariant_Tick, 0, 0, steps);
478478
if (label != NULL) env->ReleaseStringUTFChars(obj_label, label);
479479
if (pValue != NULL) env->ReleasePrimitiveArrayCritical(obj_pValue, pValue, JNI_FALSE);
480480
return _result;
@@ -936,7 +936,7 @@ public static boolean knob(final String label, final ImInt pValue, final int vMi
936936
private static native boolean nKnob(String obj_label, int[] obj_pValue, int vMin, int vMax, int variant, float size, int flags, int steps); /*MANUAL
937937
auto label = obj_label == NULL ? NULL : (char*)env->GetStringUTFChars(obj_label, JNI_FALSE);
938938
auto pValue = obj_pValue == NULL ? NULL : (int*)env->GetPrimitiveArrayCritical(obj_pValue, JNI_FALSE);
939-
auto _result = ImGuiKnobs::KnobInt(label, (pValue != NULL ? &pValue[0] : NULL), vMin, vMax, 0, NULL, variant, size, flags, steps);
939+
auto _result = ImGuiKnobs::KnobInt(label, (pValue != NULL ? &pValue[0] : NULL), vMin, vMax, 0, "%i", variant, size, flags, steps);
940940
if (label != NULL) env->ReleaseStringUTFChars(obj_label, label);
941941
if (pValue != NULL) env->ReleasePrimitiveArrayCritical(obj_pValue, pValue, JNI_FALSE);
942942
return _result;
@@ -945,7 +945,7 @@ public static boolean knob(final String label, final ImInt pValue, final int vMi
945945
private static native boolean nKnob(String obj_label, int[] obj_pValue, int vMin, int vMax, float speed, int variant, float size, int flags, int steps); /*MANUAL
946946
auto label = obj_label == NULL ? NULL : (char*)env->GetStringUTFChars(obj_label, JNI_FALSE);
947947
auto pValue = obj_pValue == NULL ? NULL : (int*)env->GetPrimitiveArrayCritical(obj_pValue, JNI_FALSE);
948-
auto _result = ImGuiKnobs::KnobInt(label, (pValue != NULL ? &pValue[0] : NULL), vMin, vMax, speed, NULL, variant, size, flags, steps);
948+
auto _result = ImGuiKnobs::KnobInt(label, (pValue != NULL ? &pValue[0] : NULL), vMin, vMax, speed, "%i", variant, size, flags, steps);
949949
if (label != NULL) env->ReleaseStringUTFChars(obj_label, label);
950950
if (pValue != NULL) env->ReleasePrimitiveArrayCritical(obj_pValue, pValue, JNI_FALSE);
951951
return _result;
@@ -954,7 +954,7 @@ public static boolean knob(final String label, final ImInt pValue, final int vMi
954954
private static native boolean nKnob(String obj_label, int[] obj_pValue, int vMin, int vMax, float speed, float size, int flags, int steps); /*MANUAL
955955
auto label = obj_label == NULL ? NULL : (char*)env->GetStringUTFChars(obj_label, JNI_FALSE);
956956
auto pValue = obj_pValue == NULL ? NULL : (int*)env->GetPrimitiveArrayCritical(obj_pValue, JNI_FALSE);
957-
auto _result = ImGuiKnobs::KnobInt(label, (pValue != NULL ? &pValue[0] : NULL), vMin, vMax, speed, NULL, ImGuiKnobVariant_Tick, size, flags, steps);
957+
auto _result = ImGuiKnobs::KnobInt(label, (pValue != NULL ? &pValue[0] : NULL), vMin, vMax, speed, "%i", ImGuiKnobVariant_Tick, size, flags, steps);
958958
if (label != NULL) env->ReleaseStringUTFChars(obj_label, label);
959959
if (pValue != NULL) env->ReleasePrimitiveArrayCritical(obj_pValue, pValue, JNI_FALSE);
960960
return _result;
@@ -963,7 +963,7 @@ public static boolean knob(final String label, final ImInt pValue, final int vMi
963963
private static native boolean nKnob(String obj_label, int[] obj_pValue, int vMin, int vMax, float speed, int flags, int steps); /*MANUAL
964964
auto label = obj_label == NULL ? NULL : (char*)env->GetStringUTFChars(obj_label, JNI_FALSE);
965965
auto pValue = obj_pValue == NULL ? NULL : (int*)env->GetPrimitiveArrayCritical(obj_pValue, JNI_FALSE);
966-
auto _result = ImGuiKnobs::KnobInt(label, (pValue != NULL ? &pValue[0] : NULL), vMin, vMax, speed, NULL, ImGuiKnobVariant_Tick, 0, flags, steps);
966+
auto _result = ImGuiKnobs::KnobInt(label, (pValue != NULL ? &pValue[0] : NULL), vMin, vMax, speed, "%i", ImGuiKnobVariant_Tick, 0, flags, steps);
967967
if (label != NULL) env->ReleaseStringUTFChars(obj_label, label);
968968
if (pValue != NULL) env->ReleasePrimitiveArrayCritical(obj_pValue, pValue, JNI_FALSE);
969969
return _result;
@@ -972,7 +972,7 @@ public static boolean knob(final String label, final ImInt pValue, final int vMi
972972
private static native boolean nKnob(String obj_label, int[] obj_pValue, int vMin, int vMax, float speed, int steps); /*MANUAL
973973
auto label = obj_label == NULL ? NULL : (char*)env->GetStringUTFChars(obj_label, JNI_FALSE);
974974
auto pValue = obj_pValue == NULL ? NULL : (int*)env->GetPrimitiveArrayCritical(obj_pValue, JNI_FALSE);
975-
auto _result = ImGuiKnobs::KnobInt(label, (pValue != NULL ? &pValue[0] : NULL), vMin, vMax, speed, NULL, ImGuiKnobVariant_Tick, 0, 0, steps);
975+
auto _result = ImGuiKnobs::KnobInt(label, (pValue != NULL ? &pValue[0] : NULL), vMin, vMax, speed, "%i", ImGuiKnobVariant_Tick, 0, 0, steps);
976976
if (label != NULL) env->ReleaseStringUTFChars(obj_label, label);
977977
if (pValue != NULL) env->ReleasePrimitiveArrayCritical(obj_pValue, pValue, JNI_FALSE);
978978
return _result;

imgui-binding/src/generated/java/imgui/extension/imguiknobs/flag/ImGuiKnobFlags.java

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,19 @@ private ImGuiKnobFlags() {
2626
* Definition: {@code 1 << 3}
2727
*/
2828
public static final int DragHorizontal = 8;
29+
30+
/**
31+
* Definition: {@code 1 << 4}
32+
*/
33+
public static final int DragVertical = 16;
34+
35+
/**
36+
* Definition: {@code 1 << 5}
37+
*/
38+
public static final int Logarithmic = 32;
39+
40+
/**
41+
* Definition: {@code 1 << 6}
42+
*/
43+
public static final int AlwaysClamp = 64;
2944
}

imgui-binding/src/generated/java/imgui/extension/memedit/MemoryEditorSizes.java

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -105,68 +105,68 @@ public void setSpacingBetweenMidCols(final float value) {
105105
THIS->SpacingBetweenMidCols = value;
106106
*/
107107

108-
public float getPosHexStart() {
109-
return nGetPosHexStart();
108+
public float getOffsetHexMinX() {
109+
return nGetOffsetHexMinX();
110110
}
111111

112-
public void setPosHexStart(final float value) {
113-
nSetPosHexStart(value);
112+
public void setOffsetHexMinX(final float value) {
113+
nSetOffsetHexMinX(value);
114114
}
115115

116-
private native float nGetPosHexStart(); /*
117-
return THIS->PosHexStart;
116+
private native float nGetOffsetHexMinX(); /*
117+
return THIS->OffsetHexMinX;
118118
*/
119119

120-
private native void nSetPosHexStart(float value); /*
121-
THIS->PosHexStart = value;
120+
private native void nSetOffsetHexMinX(float value); /*
121+
THIS->OffsetHexMinX = value;
122122
*/
123123

124-
public float getPosHexEnd() {
125-
return nGetPosHexEnd();
124+
public float getOffsetHexMaxX() {
125+
return nGetOffsetHexMaxX();
126126
}
127127

128-
public void setPosHexEnd(final float value) {
129-
nSetPosHexEnd(value);
128+
public void setOffsetHexMaxX(final float value) {
129+
nSetOffsetHexMaxX(value);
130130
}
131131

132-
private native float nGetPosHexEnd(); /*
133-
return THIS->PosHexEnd;
132+
private native float nGetOffsetHexMaxX(); /*
133+
return THIS->OffsetHexMaxX;
134134
*/
135135

136-
private native void nSetPosHexEnd(float value); /*
137-
THIS->PosHexEnd = value;
136+
private native void nSetOffsetHexMaxX(float value); /*
137+
THIS->OffsetHexMaxX = value;
138138
*/
139139

140-
public float getPosAsciiStart() {
141-
return nGetPosAsciiStart();
140+
public float getOffsetAsciiMinX() {
141+
return nGetOffsetAsciiMinX();
142142
}
143143

144-
public void setPosAsciiStart(final float value) {
145-
nSetPosAsciiStart(value);
144+
public void setOffsetAsciiMinX(final float value) {
145+
nSetOffsetAsciiMinX(value);
146146
}
147147

148-
private native float nGetPosAsciiStart(); /*
149-
return THIS->PosAsciiStart;
148+
private native float nGetOffsetAsciiMinX(); /*
149+
return THIS->OffsetAsciiMinX;
150150
*/
151151

152-
private native void nSetPosAsciiStart(float value); /*
153-
THIS->PosAsciiStart = value;
152+
private native void nSetOffsetAsciiMinX(float value); /*
153+
THIS->OffsetAsciiMinX = value;
154154
*/
155155

156-
public float getPosAsciiEnd() {
157-
return nGetPosAsciiEnd();
156+
public float getOffsetAsciiMaxX() {
157+
return nGetOffsetAsciiMaxX();
158158
}
159159

160-
public void setPosAsciiEnd(final float value) {
161-
nSetPosAsciiEnd(value);
160+
public void setOffsetAsciiMaxX(final float value) {
161+
nSetOffsetAsciiMaxX(value);
162162
}
163163

164-
private native float nGetPosAsciiEnd(); /*
165-
return THIS->PosAsciiEnd;
164+
private native float nGetOffsetAsciiMaxX(); /*
165+
return THIS->OffsetAsciiMaxX;
166166
*/
167167

168-
private native void nSetPosAsciiEnd(float value); /*
169-
THIS->PosAsciiEnd = value;
168+
private native void nSetOffsetAsciiMaxX(float value); /*
169+
THIS->OffsetAsciiMaxX = value;
170170
*/
171171

172172
public float getWindowWidth() {

0 commit comments

Comments
 (0)