Add header includes

This commit is contained in:
twinaphex 2016-09-08 06:02:41 +02:00
parent c35d763990
commit 0732626797
4 changed files with 24 additions and 8 deletions

View File

@ -17,15 +17,18 @@
#include <gfx/math/matrix_4x4.h>
#ifdef HAVE_CONFIG_H
#include "../../config.h"
#endif
#include "../menu_display.h"
#include "../../config.def.h"
#include "../../retroarch.h"
#include "../../gfx/font_driver.h"
#include "../../gfx/video_context_driver.h"
#include "../../gfx/drivers/d3d.h"
#include "../../gfx/common/d3d_common.h"
#include "../menu_display.h"
#include "../../gfx/include/d3d9/d3dx9math.h"
#define BYTE_CLAMP(i) (int) ((((i) > 255) ? 255 : (((i) < 0) ? 0 : (i))))

View File

@ -15,6 +15,10 @@
#include <retro_miscellaneous.h>
#ifdef HAVE_CONFIG_H
#include "../../config.h"
#endif
#include "../../config.def.h"
#include "../../retroarch.h"
#include "../../gfx/font_driver.h"

View File

@ -13,17 +13,22 @@
* If not, see <http://www.gnu.org/licenses/>.
*/
#include <vita2d.h>
#include <retro_miscellaneous.h>
#ifdef HAVE_CONFIG_H
#include "../../config.h"
#endif
#include "../menu_display.h"
#include "../../config.def.h"
#include "../../retroarch.h"
#include "../../gfx/font_driver.h"
#include "../../gfx/video_context_driver.h"
#include "../../gfx/video_shader_driver.h"
#include "../../gfx/common/vita2d_common.h"
#include <vita2d.h>
#include "../menu_display.h"
static const float vita2d_vertexes[] = {
0, 0,

View File

@ -16,14 +16,18 @@
#include <retro_miscellaneous.h>
#ifdef HAVE_CONFIG_H
#include "../../config.h"
#endif
#include "../menu_display.h"
#include "../../config.def.h"
#include "../../gfx/font_driver.h"
#include "../../gfx/video_context_driver.h"
#include "../../gfx/common/vulkan_common.h"
#include "../../gfx/video_shader_driver.h"
#include "../menu_display.h"
/* Will do Y-flip later, but try to make it similar to GL. */
static const float vk_vertexes[] = {
0, 0,