aboutsummaryrefslogtreecommitdiffstats
path: root/demos/modules/gwin/textedit/gfxconf.h
diff options
context:
space:
mode:
authorThomas Sterren <thomas.sterren@simulton.com>2018-02-20 14:53:17 +0100
committerThomas Sterren <thomas.sterren@simulton.com>2018-02-20 14:53:17 +0100
commit9e51a3e58660bbb500c9699bd912a16e989820c3 (patch)
tree43aeefadeef7b8b8737b262f17fa8505bd7e7434 /demos/modules/gwin/textedit/gfxconf.h
parent861e6b98696f23d01c35f00dcf29fce51acd14c5 (diff)
downloaduGFX-9e51a3e58660bbb500c9699bd912a16e989820c3.tar.gz
uGFX-9e51a3e58660bbb500c9699bd912a16e989820c3.tar.bz2
uGFX-9e51a3e58660bbb500c9699bd912a16e989820c3.zip
_gosPostInit() needs to be in C
Diffstat (limited to 'demos/modules/gwin/textedit/gfxconf.h')
0 files changed, 0 insertions, 0 deletions
href='#n130'>130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208
/*
    ChibiOS/GFX - Copyright (C) 2012
                 Joel Bodenmann aka Tectu <joel@unormal.org>

    This file is part of ChibiOS/GFX.

    ChibiOS/GFX is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 3 of the License, or
    (at your option) any later version.

    ChibiOS/GFX is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

/**
 * @file    include/gdisp/options.h
 * @brief   GDISP sub-system options header file.
 *
 * @addtogroup GDISP
 * @{
 */

#ifndef _GDISP_OPTIONS_H
#define _GDISP_OPTIONS_H

/**
 * @name    GDISP Functionality to be included
 * @{
 */
	/**
	 * @brief   Should all operations be clipped to the screen and colors validated.
	 * @details	Defaults to TRUE.
	 * @note    If this is FALSE, any operations that extend beyond the
	 *          edge of the screen will have undefined results. Any
	 *			out-of-range colors will produce undefined results.
	 * @note	If defined then all low level and high level GDISP driver routines
	 *			must check the validity of inputs and do something sensible
	 *			if they are out of range. It doesn't have to be efficient,
	 *			just valid.
	 */
	#ifndef GDISP_NEED_VALIDATION
		#define GDISP_NEED_VALIDATION	TRUE
	#endif
	/**
	 * @brief   Are clipping functions needed.
	 * @details	Defaults to TRUE
	 */
	#ifndef GDISP_NEED_CLIP
		#define GDISP_NEED_CLIP			TRUE