ugfx/src/gqueue/gqueue_options.h

60 lines
1.1 KiB
C
Raw Normal View History

/*
2013-06-15 11:37:22 +00:00
* This file is subject to the terms of the GFX License. If a copy of
* the license was not distributed with this file, you can obtain one at:
*
2018-10-01 15:32:39 +00:00
* http://ugfx.io/license.html
2013-06-15 11:37:22 +00:00
*/
/**
* @file src/gqueue/gqueue_options.h
* @brief GQUEUE - Queue options header file.
*
* @addtogroup GQUEUE
* @{
*/
#ifndef _GQUEUE_OPTIONS_H
#define _GQUEUE_OPTIONS_H
/**
* @name GQUEUE Functions to include.
* @{
*/
/**
* @brief Enable Asynchronous Queues
2018-02-27 07:44:21 +00:00
* @details Defaults to GFXOFF
*/
#ifndef GQUEUE_NEED_ASYNC
2018-02-27 07:44:21 +00:00
#define GQUEUE_NEED_ASYNC GFXOFF
#endif
/**
* @brief Enable Get-Synchronous Queues
2018-02-27 07:44:21 +00:00
* @details Defaults to GFXOFF
*/
#ifndef GQUEUE_NEED_GSYNC
2018-02-27 07:44:21 +00:00
#define GQUEUE_NEED_GSYNC GFXOFF
#endif
/**
* @brief Enable Fully Synchronous Queues
2018-02-27 07:44:21 +00:00
* @details Defaults to GFXOFF
*/
#ifndef GQUEUE_NEED_FSYNC
2018-02-27 07:44:21 +00:00
#define GQUEUE_NEED_FSYNC GFXOFF
#endif
/**
* @brief Enable Queue-able Data Buffers
*/
#ifndef GQUEUE_NEED_BUFFERS
2018-02-27 07:44:21 +00:00
#define GQUEUE_NEED_BUFFERS GFXOFF
#endif
/**
* @}
*
* @name GQUEUE Optional Sizing Parameters
* @{
*/
/** @} */
#endif /* _GQUEUE_OPTIONS_H */
/** @} */