Revert StaticDisplayState; For hosted only allow debug to be used.
[SquirrelJME.git] / modules / midp-lcdui / src / main / java / cc / squirreljme / runtime / lcdui / gfx / AdvancedBufferAdapter.java
blob316f3775dde4607520809fb4529658c47e105d5c
1 // -*- Mode: Java; indent-tabs-mode: t; tab-width: 4 -*-
2 // ---------------------------------------------------------------------------
3 // SquirrelJME
4 // Copyright (C) Stephanie Gawroriski <xer@multiphasicapps.net>
5 // ---------------------------------------------------------------------------
6 // SquirrelJME is under the GNU General Public License v3+, or later.
7 // See license.mkd for licensing and copyright information.
8 // ---------------------------------------------------------------------------
10 package cc.squirreljme.runtime.lcdui.gfx;
12 /**
13 * This is the base class for buffer adapters, instances of these classes are
14 * used to translate the 32-bit integer format to lower quality buffer formats.
16 * @since 2019/03/24
18 public abstract class AdvancedBufferAdapter
20 /**
21 * Adapts the buffer data.
23 * @since 2019/03/24
25 public abstract void adapt();