SquirrelJME/SquirrelJME

View on GitHub
modules/midp-lcdui/src/main/java/cc/squirreljme/runtime/lcdui/mle/UIBackendType.java

Summary

Maintainability
A
0 mins
Test Coverage
// -*- Mode: Java; indent-tabs-mode: t; tab-width: 4 -*-
// ---------------------------------------------------------------------------
// SquirrelJME
//     Copyright (C) Stephanie Gawroriski <xer@multiphasicapps.net>
// ---------------------------------------------------------------------------
// SquirrelJME is under the Mozilla Public License Version 2.0.
// See license.mkd for licensing and copyright information.
// ---------------------------------------------------------------------------

package cc.squirreljme.runtime.lcdui.mle;

/**
 * The type of backend to use, if forced.
 *
 * @since 2020/10/09
 */
public enum UIBackendType
{
    /** Native backend, uses system widgets if supported/possible. */
    NATIVE,
    
    /** Framebuffer backend, uses a pre-existing image/graphics to draw on. */
    FRAMEBUFFER,
    
    /** Headless (no-op) backend, uses an inaccessible framebuffer. */
    HEADLESS,
    
    /* End. */
    ;
}