citro3d/include/citro3d.h

35 lines
600 B
C
Raw Normal View History

2014-12-20 21:34:19 +01:00
#pragma once
#ifdef CITRO3D_BUILD
#error "This header file is only for external users of citro3d."
#endif
#ifdef __cplusplus
extern "C" {
#endif
#include "c3d/types.h"
2017-02-09 04:30:25 +01:00
2014-12-20 21:34:19 +01:00
#include "c3d/maths.h"
#include "c3d/mtxstack.h"
#include "c3d/uniforms.h"
#include "c3d/attribs.h"
#include "c3d/buffers.h"
#include "c3d/base.h"
#include "c3d/texenv.h"
#include "c3d/effect.h"
#include "c3d/texture.h"
#include "c3d/proctex.h"
#include "c3d/light.h"
2017-02-09 04:30:25 +01:00
#include "c3d/lightlut.h"
2014-12-20 21:34:19 +01:00
#include "c3d/framebuffer.h"
#include "c3d/renderbuffer.h" // Deprecated
2016-01-05 17:30:05 +01:00
#include "c3d/renderqueue.h"
2014-12-20 21:34:19 +01:00
#ifdef __cplusplus
}
#endif