refresh headers inclusions

This commit is contained in:
milang 2019-09-18 19:04:56 +02:00
parent 2e22f3fcde
commit 778c1809e8
No known key found for this signature in database
GPG Key ID: D287C9D6C33D9035
12 changed files with 19 additions and 18 deletions

View File

@ -1,7 +1,7 @@
#ifndef FE_CAMERA
#define FE_CAMERA
#include "space.h"
#include <fxengine/space.h>
struct fe_camera
{

View File

@ -1,8 +1,9 @@
#ifndef FE_OBJECT
#define FE_OBJECT
#include "space.h"
#include "triangle.h"
#include <fxengine/space.h>
#include <fxengine/triangle.h>
#include <stdint.h>
#include <stdbool.h>

View File

@ -4,7 +4,7 @@
// Diverses representations de points dans l'espace
#include <stdint.h>
#include "parameters.h"
#include <fxengine/parameters.h>
/**

View File

@ -1,8 +1,8 @@
#ifndef FE_TRIANGLE
#define FE_TRIANGLE
#include "space.h"
#include "texture.h"
#include <fxengine/space.h>
#include <fxengine/texture.h>
#include <stdbool.h>

View File

@ -1,7 +1,7 @@
#ifndef RENDER_ZBUFFER
#define RENDER_ZBUFFER
#include "parameters.h"
#include <fxengine/parameters.h>
#include <stdint.h>
/** FE_zbuffer_clear

Binary file not shown.

View File

@ -1,4 +1,4 @@
#include "camera.h"
#include <fxengine/camera.h>
#include <gint/std/string.h>

View File

@ -1,4 +1,4 @@
#include "object.h"
#include <fxengine/object.h>
#include <gint/std/stdlib.h>
#include <gint/std/stdio.h>

View File

@ -1,5 +1,5 @@
#include "space.h"
#include "camera.h"
#include <fxengine/space.h>
#include <fxengine/camera.h>
#include <gint/std/stdlib.h>
#include <gint/std/string.h>

View File

@ -1,4 +1,4 @@
#include "texture.h"
#include <fxengine/texture.h>
#include <gint/display.h>
#include <gint/std/string.h>

View File

@ -1,7 +1,7 @@
#include "triangle.h"
#include "texture.h"
#include "space.h"
#include "zbuffer.h"
#include <fxengine/triangle.h>
#include <fxengine/texture.h>
#include <fxengine/space.h>
#include <fxengine/zbuffer.h>
#ifdef USE_LIBPROF
#include <libprof.h>

View File

@ -1,5 +1,5 @@
#include "zbuffer.h"
#include "parameters.h"
#include <fxengine/zbuffer.h>
#include <fxengine/parameters.h>
#include <stdbool.h>
#include <stdint.h>