Skip to content

Add portable accessibility semantics#5363

Open
shai-almog wants to merge 12 commits into
masterfrom
accessibility-semantics
Open

Add portable accessibility semantics#5363
shai-almog wants to merge 12 commits into
masterfrom
accessibility-semantics

Conversation

@shai-almog

Copy link
Copy Markdown
Collaborator

Summary

  • add a portable semantics tree for all lightweight Codename One components, including roles, states, values, ranges, custom actions, grouping, traversal, live regions, panes, and collection metadata
  • expose virtual native accessibility trees through TalkBack, VoiceOver and Catalyst, Windows UI Automation, Linux ATK/AT-SPI, Java accessibility, and web ARIA
  • infer semantics for standard controls while preserving the existing accessibility text API
  • add immutable snapshots, JSON inspection, automated accessibility audits, and JavaSE inspector integration
  • document the complete API and platform behavior in the developer guide

Motivation

Codename One renders lightweight controls itself, so native accessibility frameworks cannot infer a complete semantic hierarchy from native widgets. This change manufactures that hierarchy explicitly and gives applications a portable API comparable to modern semantics systems.

Testing

  • Java 8 core accessibility suite: 6 tests passed
  • Java 8 core smoke suite: 9 tests passed
  • clean HelloCodenameOne common build under Java 17, compiling 190 Java sources and the Kotlin fixtures
  • extensive AccessibilityTest assertions registered in scripts/hellocodenameone for native CI platforms
  • Android AccessibilityNodeProvider compiled against the Android API
  • developer guide chapter rendered successfully
  • git diff --check passed

@github-actions

github-actions Bot commented Jul 11, 2026

Copy link
Copy Markdown
Contributor

✅ ByteCodeTranslator Quality Report

Test & Coverage

  • Tests: 395 total, 0 failed, 14 skipped

Benchmark Results

  • Execution Time: 18508 ms

  • Hotspots (Top 20 sampled methods):

    • 17.51% java.util.ArrayList.indexOf (295 samples)
    • 9.20% com.codename1.tools.translator.BytecodeMethod.addToConstantPool (155 samples)
    • 3.38% com.codename1.tools.translator.Parser.cn1EnsureSubclassIndex (57 samples)
    • 3.32% com.codename1.tools.translator.ByteCodeClass.hasDeclaredMethod (56 samples)
    • 3.26% java.lang.StringBuilder.append (55 samples)
    • 2.55% org.objectweb.asm.tree.analysis.Analyzer.analyze (43 samples)
    • 2.20% com.codename1.tools.translator.Parser.generateClassAndMethodIndexHeader (37 samples)
    • 1.96% com.codename1.tools.translator.BytecodeMethod.optimize (33 samples)
    • 1.60% com.codename1.tools.translator.Parser.addToConstantPool (27 samples)
    • 1.60% com.codename1.tools.translator.bytecodes.Invoke.resolveDirectTarget (27 samples)
    • 1.54% com.codename1.tools.translator.BytecodeMethod.equals (26 samples)
    • 1.54% java.lang.System.identityHashCode (26 samples)
    • 1.48% com.codename1.tools.translator.ByteCodeClass.markDependent (25 samples)
    • 1.36% org.objectweb.asm.tree.analysis.Analyzer.findSubroutine (23 samples)
    • 1.31% java.lang.Object.hashCode (22 samples)
    • 1.31% com.codename1.tools.translator.Parser.classIndex (22 samples)
    • 1.31% java.lang.String.equals (22 samples)
    • 1.31% java.util.HashMap.hash (22 samples)
    • 1.25% com.codename1.tools.translator.Parser.resolveDupForms (21 samples)
    • 1.19% com.codename1.tools.translator.BytecodeMethod.appendCMethodPrefix (20 samples)
  • ⚠️ Coverage report not generated.

Static Analysis

  • ✅ SpotBugs: no findings (report was not generated by the build).
  • ⚠️ PMD report not generated.
  • ⚠️ Checkstyle report not generated.

Generated automatically by the PR CI workflow.

@shai-almog

shai-almog commented Jul 11, 2026

Copy link
Copy Markdown
Collaborator Author

Compared 12 screenshots: 12 matched.
✅ JavaSE simulator integration screenshots matched stored baselines.

@shai-almog

shai-almog commented Jul 11, 2026

Copy link
Copy Markdown
Collaborator Author

Compared 144 screenshots: 144 matched.

Native Android coverage

  • 📊 Line coverage: 10.35% (10618/102585 lines covered) [HTML preview] (artifact android-coverage-report, jacocoAndroidReport/html/index.html)
    • Other counters: instruction 9.19% (52339/569626), branch 4.61% (2396/52029), complexity 4.56% (2500/54833), method 6.93% (1964/28350), class 11.00% (443/4027)
    • Lowest covered classes
      • kotlin.collections.kotlin.collections.ArraysKt___ArraysKt – 0.00% (0/6327 lines covered)
      • kotlin.collections.unsigned.kotlin.collections.unsigned.UArraysKt___UArraysKt – 0.00% (0/2384 lines covered)
      • org.jacoco.agent.rt.internal_b6258fc.asm.org.jacoco.agent.rt.internal_b6258fc.asm.ClassReader – 0.00% (0/1519 lines covered)
      • kotlin.collections.kotlin.collections.CollectionsKt___CollectionsKt – 0.00% (0/1148 lines covered)
      • org.jacoco.agent.rt.internal_b6258fc.asm.org.jacoco.agent.rt.internal_b6258fc.asm.MethodWriter – 0.00% (0/923 lines covered)
      • kotlin.sequences.kotlin.sequences.SequencesKt___SequencesKt – 0.00% (0/730 lines covered)
      • com.google.common.cache.com.google.common.cache.LocalCache$Segment – 0.00% (0/726 lines covered)
      • kotlin.text.kotlin.text.StringsKt___StringsKt – 0.00% (0/623 lines covered)
      • org.jacoco.agent.rt.internal_b6258fc.asm.org.jacoco.agent.rt.internal_b6258fc.asm.Frame – 0.00% (0/564 lines covered)
      • kotlin.collections.kotlin.collections.ArraysKt___ArraysJvmKt – 0.00% (0/495 lines covered)

✅ Native Android screenshot tests passed.

Native Android coverage

  • 📊 Line coverage: 10.35% (10618/102585 lines covered) [HTML preview] (artifact android-coverage-report, jacocoAndroidReport/html/index.html)
    • Other counters: instruction 9.19% (52339/569626), branch 4.61% (2396/52029), complexity 4.56% (2500/54833), method 6.93% (1964/28350), class 11.00% (443/4027)
    • Lowest covered classes
      • kotlin.collections.kotlin.collections.ArraysKt___ArraysKt – 0.00% (0/6327 lines covered)
      • kotlin.collections.unsigned.kotlin.collections.unsigned.UArraysKt___UArraysKt – 0.00% (0/2384 lines covered)
      • org.jacoco.agent.rt.internal_b6258fc.asm.org.jacoco.agent.rt.internal_b6258fc.asm.ClassReader – 0.00% (0/1519 lines covered)
      • kotlin.collections.kotlin.collections.CollectionsKt___CollectionsKt – 0.00% (0/1148 lines covered)
      • org.jacoco.agent.rt.internal_b6258fc.asm.org.jacoco.agent.rt.internal_b6258fc.asm.MethodWriter – 0.00% (0/923 lines covered)
      • kotlin.sequences.kotlin.sequences.SequencesKt___SequencesKt – 0.00% (0/730 lines covered)
      • com.google.common.cache.com.google.common.cache.LocalCache$Segment – 0.00% (0/726 lines covered)
      • kotlin.text.kotlin.text.StringsKt___StringsKt – 0.00% (0/623 lines covered)
      • org.jacoco.agent.rt.internal_b6258fc.asm.org.jacoco.agent.rt.internal_b6258fc.asm.Frame – 0.00% (0/564 lines covered)
      • kotlin.collections.kotlin.collections.ArraysKt___ArraysJvmKt – 0.00% (0/495 lines covered)

Benchmark Results

Detailed Performance Metrics

Metric Duration
SIMD kernel backend scalar fallback (no native SIMD)
SIMD int-add (64K x300) java 164ms / native 138ms = 1.1x speedup
SIMD float-mul (64K x300) java 101ms / native 101ms = 1.0x speedup
SIMD kernel correctness PASS (native result == scalar reference)
Base64 payload size 8192 bytes
Base64 benchmark iterations 6000
Base64 SIMD byte path gated to scalar (CPU autovectorizes scalar; explicit SIMD not beneficial here)
Base64 CN1 encode 439.000 ms
Base64 CN1 decode 347.000 ms
Base64 native encode 973.000 ms
Base64 encode ratio (CN1/native) 0.451x (54.9% faster)
Base64 native decode 806.000 ms
Base64 decode ratio (CN1/native) 0.431x (56.9% faster)
Image encode benchmark status skipped (SIMD unsupported)

@shai-almog

shai-almog commented Jul 11, 2026

Copy link
Copy Markdown
Collaborator Author

Compared 140 screenshots: 140 matched.
Native Windows port (x64 / Intel-AMD): full hellocodenameone screenshot suite rendered offscreen with Direct2D/DirectWrite, plus the real benchmarks (base64 native/CN1/SIMD, image createMask/applyMask/modifyAlpha/PNG/JPEG, SSE2 SIMD kernels). Compared against the in-repo baseline in scripts/windows/screenshots.

Benchmark Results

Detailed Performance Metrics

Metric Duration
SIMD kernel backend SSE2 (x64) / NEON (arm64) native kernels
SIMD int-add (64K x300) java 62ms / native 6ms = 10.3x speedup
SIMD float-mul (64K x300) java 61ms / native 4ms = 15.2x speedup
SIMD kernel correctness PASS (native result == scalar reference)
Base64 native bridge unavailable (CN1 + SIMD + image benchmarks only)
Base64 payload size 8192 bytes
Base64 benchmark iterations 6000
Base64 SIMD byte path gated to scalar (CPU autovectorizes scalar; explicit SIMD not beneficial here)
Base64 CN1 encode 209.000 ms
Base64 CN1 decode 128.000 ms
Base64 SIMD encode 112.000 ms
Base64 encode ratio (SIMD/CN1) 0.536x (46.4% faster)
Base64 SIMD decode 93.000 ms
Base64 decode ratio (SIMD/CN1) 0.727x (27.3% faster)
Image encode benchmark iterations 100
Image createMask (SIMD off) 21.000 ms
Image createMask (SIMD on) 15.000 ms
Image createMask ratio (SIMD on/off) 0.714x (28.6% faster)
Image applyMask (SIMD off) 42.000 ms
Image applyMask (SIMD on) 35.000 ms
Image applyMask ratio (SIMD on/off) 0.833x (16.7% faster)
Image modifyAlpha (SIMD off) 32.000 ms
Image modifyAlpha (SIMD on) 36.000 ms
Image modifyAlpha ratio (SIMD on/off) 1.125x (12.5% slower)
Image modifyAlpha removeColor (SIMD off) 35.000 ms
Image modifyAlpha removeColor (SIMD on) 30.000 ms
Image modifyAlpha removeColor ratio (SIMD on/off) 0.857x (14.3% faster)

@shai-almog

shai-almog commented Jul 11, 2026

Copy link
Copy Markdown
Collaborator Author

Compared 140 screenshots: 140 matched.
Native Windows port, REAL shipping pipeline: the hellocodenameone screenshot suite rendered by a binary CROSS-COMPILED on Linux (clang-cl + xwin, WebView2 linked) and RUN on a Windows x64 runner. Compared against the in-repo baseline in scripts/windows/screenshots.

Benchmark Results

Detailed Performance Metrics

Metric Duration
SIMD kernel backend SSE2 (x64) / NEON (arm64) native kernels
SIMD int-add (64K x300) java 47ms / native 3ms = 15.6x speedup
SIMD float-mul (64K x300) java 51ms / native 3ms = 17.0x speedup
SIMD kernel correctness PASS (native result == scalar reference)
Base64 native bridge unavailable (CN1 + SIMD + image benchmarks only)
Base64 payload size 8192 bytes
Base64 benchmark iterations 6000
Base64 SIMD byte path gated to scalar (CPU autovectorizes scalar; explicit SIMD not beneficial here)
Base64 CN1 encode 149.000 ms
Base64 CN1 decode 92.000 ms
Base64 SIMD encode 77.000 ms
Base64 encode ratio (SIMD/CN1) 0.517x (48.3% faster)
Base64 SIMD decode 68.000 ms
Base64 decode ratio (SIMD/CN1) 0.739x (26.1% faster)
Image encode benchmark iterations 100
Image createMask (SIMD off) 15.000 ms
Image createMask (SIMD on) 13.000 ms
Image createMask ratio (SIMD on/off) 0.867x (13.3% faster)
Image applyMask (SIMD off) 31.000 ms
Image applyMask (SIMD on) 26.000 ms
Image applyMask ratio (SIMD on/off) 0.839x (16.1% faster)
Image modifyAlpha (SIMD off) 22.000 ms
Image modifyAlpha (SIMD on) 19.000 ms
Image modifyAlpha ratio (SIMD on/off) 0.864x (13.6% faster)
Image modifyAlpha removeColor (SIMD off) 24.000 ms
Image modifyAlpha removeColor (SIMD on) 20.000 ms
Image modifyAlpha removeColor ratio (SIMD on/off) 0.833x (16.7% faster)

@github-actions

Copy link
Copy Markdown
Contributor

Cloudflare Preview

@shai-almog

shai-almog commented Jul 11, 2026

Copy link
Copy Markdown
Collaborator Author

Compared 167 screenshots: 167 matched.
✅ JavaScript-port screenshot tests passed.

@shai-almog

shai-almog commented Jul 11, 2026

Copy link
Copy Markdown
Collaborator Author

Compared 140 screenshots: 140 matched.
Native Windows port (arm64 / Apple Silicon - Arm): full hellocodenameone screenshot suite rendered offscreen with Direct2D/DirectWrite, plus the real benchmarks (base64 native/CN1/SIMD, image createMask/applyMask/modifyAlpha/PNG/JPEG, NEON SIMD kernels). Compared against the in-repo baseline in scripts/windows/screenshots.

Benchmark Results

Detailed Performance Metrics

Metric Duration
SIMD kernel backend SSE2 (x64) / NEON (arm64) native kernels
SIMD int-add (64K x300) java 53ms / native 3ms = 17.6x speedup
SIMD float-mul (64K x300) java 55ms / native 3ms = 18.3x speedup
SIMD kernel correctness PASS (native result == scalar reference)
Base64 native bridge unavailable (CN1 + SIMD + image benchmarks only)
Base64 payload size 8192 bytes
Base64 benchmark iterations 6000
Base64 SIMD byte path gated to scalar (CPU autovectorizes scalar; explicit SIMD not beneficial here)
Base64 CN1 encode 245.000 ms
Base64 CN1 decode 127.000 ms
Base64 SIMD encode 65.000 ms
Base64 encode ratio (SIMD/CN1) 0.265x (73.5% faster)
Base64 SIMD decode 58.000 ms
Base64 decode ratio (SIMD/CN1) 0.457x (54.3% faster)
Image encode benchmark iterations 100
Image createMask (SIMD off) 11.000 ms
Image createMask (SIMD on) 8.000 ms
Image createMask ratio (SIMD on/off) 0.727x (27.3% faster)
Image applyMask (SIMD off) 25.000 ms
Image applyMask (SIMD on) 19.000 ms
Image applyMask ratio (SIMD on/off) 0.760x (24.0% faster)
Image modifyAlpha (SIMD off) 16.000 ms
Image modifyAlpha (SIMD on) 13.000 ms
Image modifyAlpha ratio (SIMD on/off) 0.813x (18.8% faster)
Image modifyAlpha removeColor (SIMD off) 18.000 ms
Image modifyAlpha removeColor (SIMD on) 13.000 ms
Image modifyAlpha removeColor ratio (SIMD on/off) 0.722x (27.8% faster)

@shai-almog

shai-almog commented Jul 11, 2026

Copy link
Copy Markdown
Collaborator Author

Compared 141 screenshots: 141 matched.
Native Linux port (x64), GTK3/Cairo/Pango, ParparVM bytecode-to-C (no JVM): the hellocodenameone screenshot suite rendered by a native ELF built + run on the GitHub x64 runner. Baseline: scripts/linux/screenshots.

@shai-almog

shai-almog commented Jul 11, 2026

Copy link
Copy Markdown
Collaborator Author

Compared 141 screenshots: 141 matched.
Native Linux port (arm64), GTK3/Cairo/Pango, ParparVM bytecode-to-C (no JVM): the hellocodenameone screenshot suite rendered by a native ELF built + run on the GitHub arm64 runner. Baseline: scripts/linux/screenshots-arm.

@shai-almog

shai-almog commented Jul 11, 2026

Copy link
Copy Markdown
Collaborator Author

Compared 142 screenshots: 142 matched.
✅ Native Mac screenshot tests passed.

Benchmark Results

  • VM Translation Time: 0 seconds
  • Compilation Time: 253 seconds

Detailed Performance Metrics

Metric Duration
SIMD kernel backend SSE2 (x64) / NEON (arm64) native kernels
SIMD int-add (64K x300) java 52ms / native 3ms = 17.3x speedup
SIMD float-mul (64K x300) java 53ms / native 3ms = 17.6x speedup
SIMD kernel correctness PASS (native result == scalar reference)
Base64 payload size 8192 bytes
Base64 benchmark iterations 6000
Base64 SIMD byte path active (NEON-accelerated)
Base64 CN1 encode 170.000 ms
Base64 CN1 decode 123.000 ms
Base64 native encode 1000.000 ms
Base64 encode ratio (CN1/native) 0.170x (83.0% faster)
Base64 native decode 294.000 ms
Base64 decode ratio (CN1/native) 0.418x (58.2% faster)
Base64 SIMD encode 48.000 ms
Base64 encode ratio (SIMD/CN1) 0.282x (71.8% faster)
Base64 SIMD decode 43.000 ms
Base64 decode ratio (SIMD/CN1) 0.350x (65.0% faster)
Base64 encode ratio (SIMD/native) 0.048x (95.2% faster)
Base64 decode ratio (SIMD/native) 0.146x (85.4% faster)
Image encode benchmark iterations 100
Image createMask (SIMD off) 7.000 ms
Image createMask (SIMD on) 2.000 ms
Image createMask ratio (SIMD on/off) 0.286x (71.4% faster)
Image applyMask (SIMD off) 56.000 ms
Image applyMask (SIMD on) 52.000 ms
Image applyMask ratio (SIMD on/off) 0.929x (7.1% faster)
Image modifyAlpha (SIMD off) 43.000 ms
Image modifyAlpha (SIMD on) 38.000 ms
Image modifyAlpha ratio (SIMD on/off) 0.884x (11.6% faster)
Image modifyAlpha removeColor (SIMD off) 43.000 ms
Image modifyAlpha removeColor (SIMD on) 59.000 ms
Image modifyAlpha removeColor ratio (SIMD on/off) 1.372x (37.2% slower)

@shai-almog

shai-almog commented Jul 11, 2026

Copy link
Copy Markdown
Collaborator Author

Compared 137 screenshots: 137 matched.
✅ Native iOS screenshot tests passed.

Benchmark Results

  • VM Translation Time: 0 seconds
  • Compilation Time: 224 seconds

Build and Run Timing

Metric Duration
Simulator Boot 54000 ms
Simulator Boot (Run) 1000 ms
App Install 10000 ms
App Launch 3000 ms
Test Execution 371000 ms

Detailed Performance Metrics

Metric Duration
SIMD kernel backend SSE2 (x64) / NEON (arm64) native kernels
SIMD int-add (64K x300) java 54ms / native 3ms = 18.0x speedup
SIMD float-mul (64K x300) java 55ms / native 3ms = 18.3x speedup
SIMD kernel correctness PASS (native result == scalar reference)
Base64 payload size 8192 bytes
Base64 benchmark iterations 6000
Base64 SIMD byte path active (NEON-accelerated)
Base64 CN1 encode 182.000 ms
Base64 CN1 decode 147.000 ms
Base64 native encode 551.000 ms
Base64 encode ratio (CN1/native) 0.330x (67.0% faster)
Base64 native decode 225.000 ms
Base64 decode ratio (CN1/native) 0.653x (34.7% faster)
Base64 SIMD encode 49.000 ms
Base64 encode ratio (SIMD/CN1) 0.269x (73.1% faster)
Base64 SIMD decode 45.000 ms
Base64 decode ratio (SIMD/CN1) 0.306x (69.4% faster)
Base64 encode ratio (SIMD/native) 0.089x (91.1% faster)
Base64 decode ratio (SIMD/native) 0.200x (80.0% faster)
Image encode benchmark iterations 100
Image createMask (SIMD off) 61.000 ms
Image createMask (SIMD on) 49.000 ms
Image createMask ratio (SIMD on/off) 0.803x (19.7% faster)
Image applyMask (SIMD off) 352.000 ms
Image applyMask (SIMD on) 70.000 ms
Image applyMask ratio (SIMD on/off) 0.199x (80.1% faster)
Image modifyAlpha (SIMD off) 98.000 ms
Image modifyAlpha (SIMD on) 121.000 ms
Image modifyAlpha ratio (SIMD on/off) 1.235x (23.5% slower)
Image modifyAlpha removeColor (SIMD off) 91.000 ms
Image modifyAlpha removeColor (SIMD on) 102.000 ms
Image modifyAlpha removeColor ratio (SIMD on/off) 1.121x (12.1% slower)

@shai-almog

shai-almog commented Jul 11, 2026

Copy link
Copy Markdown
Collaborator Author

Compared 216 screenshots: 216 matched.
✅ Native Apple Watch (watchOS, Core Graphics) screenshot tests passed.

@shai-almog

shai-almog commented Jul 11, 2026

Copy link
Copy Markdown
Collaborator Author

Compared 143 screenshots: 143 matched.
✅ Native iOS Metal screenshot tests passed.

Benchmark Results

  • VM Translation Time: 0 seconds
  • Compilation Time: 499 seconds

Build and Run Timing

Metric Duration
Simulator Boot 89000 ms
Simulator Boot (Run) 1000 ms
App Install 14000 ms
App Launch 77000 ms
Test Execution 434000 ms

Detailed Performance Metrics

Metric Duration
SIMD kernel backend SSE2 (x64) / NEON (arm64) native kernels
SIMD int-add (64K x300) java 99ms / native 3ms = 33.0x speedup
SIMD float-mul (64K x300) java 103ms / native 3ms = 34.3x speedup
SIMD kernel correctness PASS (native result == scalar reference)
Base64 payload size 8192 bytes
Base64 benchmark iterations 6000
Base64 SIMD byte path active (NEON-accelerated)
Base64 CN1 encode 293.000 ms
Base64 CN1 decode 265.000 ms
Base64 native encode 313.000 ms
Base64 encode ratio (CN1/native) 0.936x (6.4% faster)
Base64 native decode 507.000 ms
Base64 decode ratio (CN1/native) 0.523x (47.7% faster)
Base64 SIMD encode 76.000 ms
Base64 encode ratio (SIMD/CN1) 0.259x (74.1% faster)
Base64 SIMD decode 55.000 ms
Base64 decode ratio (SIMD/CN1) 0.208x (79.2% faster)
Base64 encode ratio (SIMD/native) 0.243x (75.7% faster)
Base64 decode ratio (SIMD/native) 0.108x (89.2% faster)
Image encode benchmark iterations 100
Image createMask (SIMD off) 10.000 ms
Image createMask (SIMD on) 3.000 ms
Image createMask ratio (SIMD on/off) 0.300x (70.0% faster)
Image applyMask (SIMD off) 62.000 ms
Image applyMask (SIMD on) 60.000 ms
Image applyMask ratio (SIMD on/off) 0.968x (3.2% faster)
Image modifyAlpha (SIMD off) 77.000 ms
Image modifyAlpha (SIMD on) 74.000 ms
Image modifyAlpha ratio (SIMD on/off) 0.961x (3.9% faster)
Image modifyAlpha removeColor (SIMD off) 84.000 ms
Image modifyAlpha removeColor (SIMD on) 39.000 ms
Image modifyAlpha removeColor ratio (SIMD on/off) 0.464x (53.6% faster)

@shai-almog

shai-almog commented Jul 11, 2026

Copy link
Copy Markdown
Collaborator Author

Compared 139 screenshots: 139 matched.
✅ Native Apple TV (tvOS, Metal) screenshot tests passed.

@github-actions

github-actions Bot commented Jul 11, 2026

Copy link
Copy Markdown
Contributor

Developer Guide build artifacts are available for download from this workflow run:

Developer Guide quality checks:

  • AsciiDoc linter: No issues found (report)
  • Vale: No alerts found (report)
  • Paragraph capitalization: No paragraph capitalization issues (report)
  • LanguageTool: No grammar matches (report)
  • Image references: No unused images detected (report)

@github-actions

github-actions Bot commented Jul 12, 2026

Copy link
Copy Markdown
Contributor

✅ Continuous Quality Report

Test & Coverage

Static Analysis

  • SpotBugs [Report archive]
    • ByteCodeTranslator: 0 findings (no issues)
    • android: 0 findings (no issues)
    • codenameone-maven-plugin: 0 findings (no issues)
    • core-unittests: 0 findings (no issues)
    • ios: 0 findings (no issues)
  • PMD: 0 findings (no issues) [Report archive]
  • Checkstyle: 0 findings (no issues) [Report archive]

Generated automatically by the PR CI workflow.

@shai-almog

shai-almog commented Jul 12, 2026

Copy link
Copy Markdown
Collaborator Author

Native fidelity (iOS Modern, Metal)

68 pairs compared -- median 94.4%, worst 83.5% (Tabs_normal_dark), 25th pct 91.4%, mean 93.7%.

Distribution -- >=99%: 0 | 95-99%: 32 | 90-95%: 26 | <90%: 10

Component State Appearance Material Fidelity SSIM mean delta vs base Geometry
Tabs normal dark glass 83.5% 0.884 11.66 -1.3 ok
Tabs normal light glass 86.4% 0.896 8.01 0.0 ok
Toolbar normal light glass 87.6% 0.951 4.24 0.0 ok
Toolbar normal dark glass 87.7% 0.950 3.69 0.0 ok
FlatButton pressed dark glass 87.8% 0.966 3.09 +1.1 ok
RaisedButton disabled dark glass 87.8% 0.954 4.42 0.0 OFF (off 12px, w 1.11)
FlatButton normal dark glass 87.9% 0.968 3.12 0.0 ok
FlatButton normal light glass 88.2% 0.970 3.28 0.0 ok
FlatButton pressed light glass 88.4% 0.968 3.09 +1.0 ok
RaisedButton disabled light glass 89.4% 0.952 3.90 +0.6 OFF (off 11px, w 1.10)
TextField normal light normal 90.4% 0.961 2.70 0.0 ok
Button normal light glass 90.5% 0.948 4.19 -1.0 OFF (off 11px)
RaisedButton normal light glass 90.7% 0.955 3.65 -1.8 OFF (off 11px, w 1.10)
Button pressed dark glass 90.9% 0.951 3.83 -0.3 OFF (off 11px)
RaisedButton pressed light glass 91.0% 0.957 3.54 +1.3 OFF (off 11px, w 1.10)
Button normal dark glass 91.1% 0.952 3.76 +0.2 OFF (off 11px)
Button pressed light glass 91.2% 0.948 3.64 +0.3 OFF (off 11px)
TextField disabled light normal 91.4% 0.965 2.20 0.0 ok
Spinner normal dark normal 91.5% 0.893 3.25 0.0 ok
Button disabled dark glass 91.7% 0.955 3.17 +0.3 OFF (off 11px)
Spinner normal light normal 91.8% 0.914 4.28 0.0 ok
Switch selected light normal 92.1% 0.981 1.47 0.0 ok
CheckBox normal light normal 92.2% 0.994 0.68 -0.1 ok
RadioButton normal light normal 92.2% 0.994 0.68 -0.1 ok
Slider disabled dark normal 92.4% 0.945 2.27 0.0 ok
RaisedButton normal dark glass 92.5% 0.962 2.89 0.0 OFF (off 11px, w 1.10)
CheckBox disabled light normal 92.7% 0.995 0.50 -0.8 ok
RadioButton disabled light normal 92.7% 0.995 0.50 -0.8 ok
Slider normal dark normal 92.7% 0.946 2.48 0.0 ok
RaisedButton pressed dark glass 92.8% 0.964 2.82 +4.8 OFF (off 11px, w 1.10)
TabsGeom normal dark normal 93.0% 0.892 8.76 -0.5 ok
TabsGeom normal light normal 93.0% 0.886 7.10 0.0 ok
Button disabled light glass 93.2% 0.954 2.70 -0.3 OFF (off 11px)
Slider disabled light normal 94.0% 0.963 1.74 0.0 OFF (h 4.50)
ProgressBar normal dark normal 94.4% 0.979 1.55 0.0 OFF (h 1.20)
RadioButton selected light normal 94.8% 0.992 0.86 +0.4 ok
Slider normal light normal 95.1% 0.958 1.58 0.0 ok
ProgressBar normal light normal 95.4% 0.984 1.37 0.0 OFF (h 1.20)
Switch normal light normal 95.5% 0.986 0.70 0.0 ok
Switch disabled dark normal 95.5% 0.978 0.90 0.0 ok
TabOne normal light normal 95.6% 0.946 8.63 0.0 OFF (off 40px, w 0.75, h 0.54)
CheckBox disabled dark normal 95.8% 0.993 0.25 +1.2 ok
RadioButton disabled dark normal 95.8% 0.993 0.25 +1.2 ok
CheckBox selected light normal 95.8% 0.994 0.67 -0.5 ok
Switch selected dark normal 95.9% 0.985 1.02 0.0 ok
TabOne normal dark normal 96.0% 0.945 6.14 -0.1 OFF (off 40px, w 0.75, h 0.54)
GlassPanelPhoto normal light glass 96.1% 0.970 8.35 0.0 ok
GlassPanelPhoto normal dark glass 96.2% 0.972 9.12 0.0 ok
Switch disabled light normal 96.3% 0.991 0.52 0.0 OFF (off 7px)
CheckBox normal dark normal 96.5% 0.993 0.35 +1.5 ok
RadioButton normal dark normal 96.5% 0.993 0.35 +1.5 ok
Switch normal dark normal 96.8% 0.986 0.82 0.0 ok
RadioButton selected dark normal 96.8% 0.991 0.57 +1.4 ok
Dialog normal dark normal 97.0% 0.948 2.20 0.0 ok
TextField normal dark normal 97.1% 0.953 3.23 -0.4 ok
Dialog normal light normal 97.1% 0.951 2.24 0.0 ok
TextField disabled dark normal 97.3% 0.956 2.34 -0.2 ok
CheckBox selected dark normal 97.8% 0.993 0.38 +0.3 ok
GlassPanelGrad normal light normal 98.2% 0.982 4.87 0.0 ok
GlassPanelGrey normal light normal 98.4% 0.982 3.78 0.0 ok
GlassPanelGrey normal dark normal 98.4% 0.982 3.62 0.0 ok
GlassPanelGrad normal dark normal 98.4% 0.983 4.11 0.0 ok
GlassPanelRed normal light normal 98.4% 0.982 3.96 0.0 ok
GlassPanelRed normal dark normal 98.6% 0.983 3.48 0.0 ok
GlassIcon normal dark normal 98.6% 0.984 3.55 0.0 ok
GlassText normal dark normal 98.6% 0.984 3.52 0.0 ok
GlassIcon normal light normal 98.7% 0.986 3.54 0.0 ok
GlassText normal light normal 98.7% 0.986 3.58 0.0 ok
Geometry vs native (bbox offset / size ratio / center offset / corner radius) -- gated separately from the visual score
Component State Appearance bbox dx,dy (px) w ratio h ratio center off (px) radius native->cn1 (px)
TabOne normal light +35,+0 0.747 0.543 39.5 79.1 -> 46.7
TabOne normal dark +35,+0 0.747 0.543 39.5 80.3 -> 47.2
RaisedButton disabled dark +0,+0 1.110 0.968 11.6 49.8 -> 44.2
RaisedButton disabled light +0,+0 1.104 0.968 11.1 54.1 -> 45.1
Button normal light +0,+0 1.100 0.968 11.1 44.5 -> 45.6
RaisedButton normal light +0,+0 1.104 0.968 11.1 44.5 -> 44.3
Button pressed dark +0,+0 1.100 0.968 11.1 45.4 -> 44.3
RaisedButton pressed light +0,+0 1.104 0.968 11.1 44.7 -> 44.3
Button normal dark +0,+0 1.100 0.968 11.1 45.8 -> 44.3
Button pressed light +0,+0 1.100 0.968 11.1 48.1 -> 55.6
Button disabled dark +0,+0 1.100 0.968 11.1 45.1 -> 44.3
RaisedButton normal dark +0,+0 1.104 0.968 11.1 44.4 -> 44.3
RaisedButton pressed dark +0,+0 1.104 0.968 11.1 44.5 -> 44.2
Button disabled light +0,+0 1.100 0.968 11.1 44.0 -> 44.7
Switch disabled light +10,+0 0.960 1.000 6.5 -
FlatButton pressed dark +0,+0 1.062 0.968 4.7 95.3 -> 48.2
FlatButton normal dark +0,+0 1.062 0.968 4.7 91.8 -> 44.5
FlatButton normal light +0,+0 1.062 0.968 4.7 91.9 -> 44.5
FlatButton pressed light +0,+0 1.062 0.968 4.7 95.4 -> 48.2
Toolbar normal light +4,+7 0.987 0.926 3.5 62.5 -> 56.1
Toolbar normal dark +4,+7 0.987 0.919 3.2 60.5 -> 55.5
Switch selected light +0,+0 1.028 1.026 2.7 -
Slider disabled light +0,-29 1.000 4.500 2.5 -
CheckBox disabled light +1,-3 1.000 1.023 2.2 -
RadioButton disabled light +1,-3 1.000 1.023 2.2 -
CheckBox disabled dark +1,-3 1.000 1.023 2.2 -
RadioButton disabled dark +1,-3 1.000 1.023 2.2 -
Switch normal light +0,+0 1.023 1.013 2.1 -
Switch disabled dark +0,+0 1.023 1.013 2.1 -
Switch normal dark +0,+0 1.023 1.013 2.1 -
CheckBox normal dark +0,-2 1.000 1.000 2.0 -
RadioButton normal dark +0,-2 1.000 1.000 2.0 -
RadioButton selected dark +0,-2 1.000 1.000 2.0 -
CheckBox selected dark +0,-2 1.000 1.000 2.0 -
Tabs normal dark +9,+0 0.973 1.012 1.8 79.7 -> 80.7
Tabs normal light +9,+0 0.973 1.012 1.8 79.2 -> 80.3
TabsGeom normal dark +9,+0 0.973 1.012 1.8 80.5 -> 80.9
TabsGeom normal light +9,+0 0.973 1.012 1.8 79.3 -> 80.6
Switch selected dark +0,+0 1.017 1.013 1.6 -
CheckBox normal light +0,-2 1.000 1.011 1.5 -
RadioButton normal light +0,-2 1.000 1.011 1.5 -
RadioButton selected light +0,-2 1.000 1.011 1.5 -
CheckBox selected light +0,-2 1.000 1.011 1.5 -
GlassIcon normal dark +0,+1 0.999 1.000 1.1 92.1 -> 91.5
GlassText normal dark +0,+1 0.999 1.000 1.1 92.1 -> 91.5
Spinner normal dark -23,-14 1.044 1.082 1.0 -
ProgressBar normal dark +0,+0 1.000 1.200 1.0 -
ProgressBar normal light +0,+0 1.000 1.200 1.0 -
GlassPanelGrey normal dark +1,+1 0.998 1.000 1.0 26.4 -> 49.4
Spinner normal light -24,-15 1.045 1.085 0.7 -
Slider disabled dark +0,-1 1.000 1.015 0.5 -
Slider normal light +0,+1 1.000 0.964 0.5 -
GlassPanelPhoto normal light +0,+0 1.000 1.005 0.5 25.6 -> 55.3
GlassPanelPhoto normal dark +0,+0 1.000 1.005 0.5 23.0 -> 52.5
GlassPanelGrad normal light +0,+0 1.000 1.005 0.5 22.3 -> 51.9
GlassPanelGrey normal light +0,+0 1.000 1.005 0.5 22.4 -> 51.9
GlassPanelGrad normal dark +1,+1 0.998 0.995 0.5 25.7 -> 48.4
GlassPanelRed normal light +0,+0 1.000 1.005 0.5 22.1 -> 51.9
GlassPanelRed normal dark +1,+1 0.998 0.995 0.5 26.6 -> 48.9
GlassIcon normal light +0,+0 1.000 1.005 0.5 91.6 -> 92.3
GlassText normal light +0,+0 1.000 1.005 0.5 91.6 -> 92.3
TextField normal light +0,+0 1.000 1.000 0.0 -
TextField disabled light +0,+0 1.000 1.000 0.0 -
Slider normal dark +0,+0 1.000 1.000 0.0 -
Dialog normal dark +0,+0 1.000 1.000 0.0 -
TextField normal dark +0,+0 1.000 1.000 0.0 -
Dialog normal light +0,+0 1.000 1.000 0.0 -
TextField disabled dark +0,+0 1.000 1.000 0.0 -

Side-by-side comparisons (worst first)

  • Tabs_normal_dark -- 83.45% fidelity (SSIM 0.8842) (-1.32 vs baseline)

    native Tabs_normal_dark cn1 Tabs_normal_dark
    Left: native widget. Right: Codename One render.

  • Tabs_normal_light -- 86.44% fidelity (SSIM 0.8961) (no change)

    native Tabs_normal_light cn1 Tabs_normal_light
    Left: native widget. Right: Codename One render.

  • Toolbar_normal_light -- 87.64% fidelity (SSIM 0.9511) (no change)

    native Toolbar_normal_light cn1 Toolbar_normal_light
    Left: native widget. Right: Codename One render.

  • Toolbar_normal_dark -- 87.70% fidelity (SSIM 0.9495) (no change)

    native Toolbar_normal_dark cn1 Toolbar_normal_dark
    Left: native widget. Right: Codename One render.

  • FlatButton_pressed_dark -- 87.79% fidelity (SSIM 0.9664) (+1.14 vs baseline)

    native FlatButton_pressed_dark cn1 FlatButton_pressed_dark
    Left: native widget. Right: Codename One render.

  • RaisedButton_disabled_dark -- 87.82% fidelity (SSIM 0.9541) (no change)

    native RaisedButton_disabled_dark cn1 RaisedButton_disabled_dark
    Left: native widget. Right: Codename One render.

  • FlatButton_normal_dark -- 87.88% fidelity (SSIM 0.9677) (no change)

    native FlatButton_normal_dark cn1 FlatButton_normal_dark
    Left: native widget. Right: Codename One render.

  • FlatButton_normal_light -- 88.16% fidelity (SSIM 0.9696) (no change)

    native FlatButton_normal_light cn1 FlatButton_normal_light
    Left: native widget. Right: Codename One render.

  • FlatButton_pressed_light -- 88.40% fidelity (SSIM 0.9676) (+1.01 vs baseline)

    native FlatButton_pressed_light cn1 FlatButton_pressed_light
    Left: native widget. Right: Codename One render.

  • RaisedButton_disabled_light -- 89.39% fidelity (SSIM 0.9518) (+0.62 vs baseline)

    native RaisedButton_disabled_light cn1 RaisedButton_disabled_light
    Left: native widget. Right: Codename One render.

  • TextField_normal_light -- 90.40% fidelity (SSIM 0.9614) (no change)

    native TextField_normal_light cn1 TextField_normal_light
    Left: native widget. Right: Codename One render.

  • Button_normal_light -- 90.49% fidelity (SSIM 0.9481) (-1.03 vs baseline)

    native Button_normal_light cn1 Button_normal_light
    Left: native widget. Right: Codename One render.

  • RaisedButton_normal_light -- 90.68% fidelity (SSIM 0.9548) (-1.78 vs baseline)

    native RaisedButton_normal_light cn1 RaisedButton_normal_light
    Left: native widget. Right: Codename One render.

  • Button_pressed_dark -- 90.87% fidelity (SSIM 0.9510) (-0.27 vs baseline)

    native Button_pressed_dark cn1 Button_pressed_dark
    Left: native widget. Right: Codename One render.

  • RaisedButton_pressed_light -- 90.99% fidelity (SSIM 0.9568) (+1.28 vs baseline)

    native RaisedButton_pressed_light cn1 RaisedButton_pressed_light
    Left: native widget. Right: Codename One render.

  • Button_normal_dark -- 91.10% fidelity (SSIM 0.9517) (+0.17 vs baseline)

    native Button_normal_dark cn1 Button_normal_dark
    Left: native widget. Right: Codename One render.

  • Button_pressed_light -- 91.24% fidelity (SSIM 0.9484) (+0.27 vs baseline)

    native Button_pressed_light cn1 Button_pressed_light
    Left: native widget. Right: Codename One render.

  • TextField_disabled_light -- 91.35% fidelity (SSIM 0.9651) (no change)

    native TextField_disabled_light cn1 TextField_disabled_light
    Left: native widget. Right: Codename One render.

  • Spinner_normal_dark -- 91.47% fidelity (SSIM 0.8933) (no change)

    native Spinner_normal_dark cn1 Spinner_normal_dark
    Left: native widget. Right: Codename One render.

  • Button_disabled_dark -- 91.66% fidelity (SSIM 0.9553) (+0.29 vs baseline)

    native Button_disabled_dark cn1 Button_disabled_dark
    Left: native widget. Right: Codename One render.

  • Spinner_normal_light -- 91.79% fidelity (SSIM 0.9141) (no change)

    native Spinner_normal_light cn1 Spinner_normal_light
    Left: native widget. Right: Codename One render.

  • Switch_selected_light -- 92.13% fidelity (SSIM 0.9806) (no change)

    native Switch_selected_light cn1 Switch_selected_light
    Left: native widget. Right: Codename One render.

  • CheckBox_normal_light -- 92.16% fidelity (SSIM 0.9938) (-0.06 vs baseline)

    native CheckBox_normal_light cn1 CheckBox_normal_light
    Left: native widget. Right: Codename One render.

  • RadioButton_normal_light -- 92.16% fidelity (SSIM 0.9938) (-0.06 vs baseline)

    native RadioButton_normal_light cn1 RadioButton_normal_light
    Left: native widget. Right: Codename One render.

  • Slider_disabled_dark -- 92.44% fidelity (SSIM 0.9448) (no change)

    native Slider_disabled_dark cn1 Slider_disabled_dark
    Left: native widget. Right: Codename One render.

  • RaisedButton_normal_dark -- 92.52% fidelity (SSIM 0.9616) (no change)

    native RaisedButton_normal_dark cn1 RaisedButton_normal_dark
    Left: native widget. Right: Codename One render.

  • CheckBox_disabled_light -- 92.71% fidelity (SSIM 0.9953) (-0.77 vs baseline)

    native CheckBox_disabled_light cn1 CheckBox_disabled_light
    Left: native widget. Right: Codename One render.

  • RadioButton_disabled_light -- 92.71% fidelity (SSIM 0.9953) (-0.77 vs baseline)

    native RadioButton_disabled_light cn1 RadioButton_disabled_light
    Left: native widget. Right: Codename One render.

  • Slider_normal_dark -- 92.74% fidelity (SSIM 0.9458) (no change)

    native Slider_normal_dark cn1 Slider_normal_dark
    Left: native widget. Right: Codename One render.

  • RaisedButton_pressed_dark -- 92.75% fidelity (SSIM 0.9637) (+4.79 vs baseline)

    native RaisedButton_pressed_dark cn1 RaisedButton_pressed_dark
    Left: native widget. Right: Codename One render.

  • TabsGeom_normal_dark -- 93.01% fidelity (SSIM 0.8920) (-0.48 vs baseline)

    native TabsGeom_normal_dark cn1 TabsGeom_normal_dark
    Left: native widget. Right: Codename One render.

  • TabsGeom_normal_light -- 93.02% fidelity (SSIM 0.8861) (no change)

    native TabsGeom_normal_light cn1 TabsGeom_normal_light
    Left: native widget. Right: Codename One render.

  • Button_disabled_light -- 93.15% fidelity (SSIM 0.9540) (-0.29 vs baseline)

    native Button_disabled_light cn1 Button_disabled_light
    Left: native widget. Right: Codename One render.

  • Slider_disabled_light -- 94.01% fidelity (SSIM 0.9626) (no change)

    native Slider_disabled_light cn1 Slider_disabled_light
    Left: native widget. Right: Codename One render.

  • ProgressBar_normal_dark -- 94.44% fidelity (SSIM 0.9788) (no change)

    native ProgressBar_normal_dark cn1 ProgressBar_normal_dark
    Left: native widget. Right: Codename One render.

  • RadioButton_selected_light -- 94.84% fidelity (SSIM 0.9916) (+0.41 vs baseline)

    native RadioButton_selected_light cn1 RadioButton_selected_light
    Left: native widget. Right: Codename One render.

  • Slider_normal_light -- 95.13% fidelity (SSIM 0.9583) (no change)

    native Slider_normal_light cn1 Slider_normal_light
    Left: native widget. Right: Codename One render.

  • ProgressBar_normal_light -- 95.41% fidelity (SSIM 0.9836) (no change)

    native ProgressBar_normal_light cn1 ProgressBar_normal_light
    Left: native widget. Right: Codename One render.

  • Switch_normal_light -- 95.51% fidelity (SSIM 0.9863) (no change)

    native Switch_normal_light cn1 Switch_normal_light
    Left: native widget. Right: Codename One render.

  • Switch_disabled_dark -- 95.53% fidelity (SSIM 0.9778) (no change)

    native Switch_disabled_dark cn1 Switch_disabled_dark
    Left: native widget. Right: Codename One render.

  • TabOne_normal_light -- 95.62% fidelity (SSIM 0.9463) (no change)

    native TabOne_normal_light cn1 TabOne_normal_light
    Left: native widget. Right: Codename One render.

  • CheckBox_disabled_dark -- 95.76% fidelity (SSIM 0.9928) (+1.17 vs baseline)

    native CheckBox_disabled_dark cn1 CheckBox_disabled_dark
    Left: native widget. Right: Codename One render.

  • RadioButton_disabled_dark -- 95.76% fidelity (SSIM 0.9928) (+1.17 vs baseline)

    native RadioButton_disabled_dark cn1 RadioButton_disabled_dark
    Left: native widget. Right: Codename One render.

  • CheckBox_selected_light -- 95.80% fidelity (SSIM 0.9938) (-0.52 vs baseline)

    native CheckBox_selected_light cn1 CheckBox_selected_light
    Left: native widget. Right: Codename One render.

  • Switch_selected_dark -- 95.90% fidelity (SSIM 0.9850) (no change)

    native Switch_selected_dark cn1 Switch_selected_dark
    Left: native widget. Right: Codename One render.

  • TabOne_normal_dark -- 96.04% fidelity (SSIM 0.9449) (-0.10 vs baseline)

    native TabOne_normal_dark cn1 TabOne_normal_dark
    Left: native widget. Right: Codename One render.

  • GlassPanelPhoto_normal_light -- 96.08% fidelity (SSIM 0.9696) (no change)

    native GlassPanelPhoto_normal_light cn1 GlassPanelPhoto_normal_light
    Left: native widget. Right: Codename One render.

  • GlassPanelPhoto_normal_dark -- 96.17% fidelity (SSIM 0.9724) (no change)

    native GlassPanelPhoto_normal_dark cn1 GlassPanelPhoto_normal_dark
    Left: native widget. Right: Codename One render.

  • Switch_disabled_light -- 96.31% fidelity (SSIM 0.9909) (no change)

    native Switch_disabled_light cn1 Switch_disabled_light
    Left: native widget. Right: Codename One render.

  • CheckBox_normal_dark -- 96.52% fidelity (SSIM 0.9927) (+1.45 vs baseline)

    native CheckBox_normal_dark cn1 CheckBox_normal_dark
    Left: native widget. Right: Codename One render.

  • RadioButton_normal_dark -- 96.52% fidelity (SSIM 0.9927) (+1.45 vs baseline)

    native RadioButton_normal_dark cn1 RadioButton_normal_dark
    Left: native widget. Right: Codename One render.

  • Switch_normal_dark -- 96.80% fidelity (SSIM 0.9855) (no change)

    native Switch_normal_dark cn1 Switch_normal_dark
    Left: native widget. Right: Codename One render.

  • RadioButton_selected_dark -- 96.81% fidelity (SSIM 0.9908) (+1.35 vs baseline)

    native RadioButton_selected_dark cn1 RadioButton_selected_dark
    Left: native widget. Right: Codename One render.

  • Dialog_normal_dark -- 96.97% fidelity (SSIM 0.9479) (no change)

    native Dialog_normal_dark cn1 Dialog_normal_dark
    Left: native widget. Right: Codename One render.

  • TextField_normal_dark -- 97.08% fidelity (SSIM 0.9528) (-0.38 vs baseline)

    native TextField_normal_dark cn1 TextField_normal_dark
    Left: native widget. Right: Codename One render.

  • Dialog_normal_light -- 97.09% fidelity (SSIM 0.9505) (no change)

    native Dialog_normal_light cn1 Dialog_normal_light
    Left: native widget. Right: Codename One render.

  • TextField_disabled_dark -- 97.34% fidelity (SSIM 0.9555) (-0.22 vs baseline)

    native TextField_disabled_dark cn1 TextField_disabled_dark
    Left: native widget. Right: Codename One render.

  • CheckBox_selected_dark -- 97.79% fidelity (SSIM 0.9932) (+0.34 vs baseline)

    native CheckBox_selected_dark cn1 CheckBox_selected_dark
    Left: native widget. Right: Codename One render.

  • GlassPanelGrad_normal_light -- 98.24% fidelity (SSIM 0.9819) (no change)

    native GlassPanelGrad_normal_light cn1 GlassPanelGrad_normal_light
    Left: native widget. Right: Codename One render.

  • GlassPanelGrey_normal_light -- 98.38% fidelity (SSIM 0.9819) (no change)

    native GlassPanelGrey_normal_light cn1 GlassPanelGrey_normal_light
    Left: native widget. Right: Codename One render.

  • GlassPanelGrey_normal_dark -- 98.42% fidelity (SSIM 0.9816) (no change)

    native GlassPanelGrey_normal_dark cn1 GlassPanelGrey_normal_dark
    Left: native widget. Right: Codename One render.

  • GlassPanelGrad_normal_dark -- 98.43% fidelity (SSIM 0.9829) (no change)

    native GlassPanelGrad_normal_dark cn1 GlassPanelGrad_normal_dark
    Left: native widget. Right: Codename One render.

  • GlassPanelRed_normal_light -- 98.43% fidelity (SSIM 0.9823) (no change)

    native GlassPanelRed_normal_light cn1 GlassPanelRed_normal_light
    Left: native widget. Right: Codename One render.

  • GlassPanelRed_normal_dark -- 98.57% fidelity (SSIM 0.9832) (no change)

    native GlassPanelRed_normal_dark cn1 GlassPanelRed_normal_dark
    Left: native widget. Right: Codename One render.

  • GlassIcon_normal_dark -- 98.59% fidelity (SSIM 0.9841) (no change)

    native GlassIcon_normal_dark cn1 GlassIcon_normal_dark
    Left: native widget. Right: Codename One render.

  • GlassText_normal_dark -- 98.59% fidelity (SSIM 0.9837) (no change)

    native GlassText_normal_dark cn1 GlassText_normal_dark
    Left: native widget. Right: Codename One render.

  • GlassIcon_normal_light -- 98.67% fidelity (SSIM 0.9860) (no change)

    native GlassIcon_normal_light cn1 GlassIcon_normal_light
    Left: native widget. Right: Codename One render.

  • GlassText_normal_light -- 98.69% fidelity (SSIM 0.9862) (no change)

    native GlassText_normal_light cn1 GlassText_normal_light
    Left: native widget. Right: Codename One render.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant