Removed the config.h thing from the .h's in the source dir.
So we should be all set now :) Kent -- mein@cs.umn.edu
This commit is contained in:
@@ -32,10 +32,6 @@
|
||||
#ifndef SND_BLENDER_H
|
||||
#define SND_BLENDER_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
@@ -39,10 +39,6 @@
|
||||
|
||||
#include "SND_Object.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class SND_CDObject : public SND_Object
|
||||
{
|
||||
private:
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
* ***** END GPL/BL DUAL LICENSE BLOCK *****
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#if defined (_WIN32)
|
||||
#define USE_FMOD
|
||||
#elif defined (__linux__)
|
||||
|
||||
@@ -39,10 +39,6 @@
|
||||
|
||||
#include "SND_IAudioDevice.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class SND_DeviceManager
|
||||
{
|
||||
public :
|
||||
|
||||
@@ -38,10 +38,6 @@
|
||||
#include "SND_WaveSlot.h"
|
||||
#include "MT_Matrix3x3.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class SND_IAudioDevice
|
||||
{
|
||||
public:
|
||||
|
||||
@@ -41,10 +41,6 @@
|
||||
#include "MT_Matrix3x3.h"
|
||||
#include "SoundDefines.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/**
|
||||
* SND_Object is an interface class for soundobjects, listeners and other
|
||||
* kinds of sound related thingies.
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
* ***** END GPL/BL DUAL LICENSE BLOCK *****
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning (disable:4786) // get rid of stupid stl-visual compiler debug warning
|
||||
#endif //WIN32
|
||||
|
||||
@@ -39,11 +39,6 @@
|
||||
|
||||
#include "SND_Object.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
|
||||
class SND_SoundListener : public SND_Object
|
||||
{
|
||||
public:
|
||||
|
||||
@@ -40,10 +40,6 @@
|
||||
#include "SND_Object.h"
|
||||
#include "STR_String.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/**
|
||||
* SND_SoundObject is a class for api independent sounddata storage conected to an actuator
|
||||
*/
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
|
||||
#include "SND_WaveSlot.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C"
|
||||
{
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
* ***** END GPL/BL DUAL LICENSE BLOCK *****
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning (disable:4786) // get rid of stupid stl-visual compiler debug warning
|
||||
#endif //WIN32
|
||||
|
||||
@@ -39,10 +39,6 @@
|
||||
|
||||
#include "STR_String.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class SND_WaveSlot
|
||||
{
|
||||
STR_String m_samplename;
|
||||
|
||||
@@ -37,10 +37,6 @@
|
||||
#ifndef __SOUNDDEFINES_H
|
||||
#define __SOUNDDEFINES_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/* the types of devices */
|
||||
enum
|
||||
{
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
|
||||
#include "SND_AudioDevice.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class SND_DummyDevice : public SND_AudioDevice
|
||||
{
|
||||
public:
|
||||
|
||||
@@ -36,10 +36,6 @@
|
||||
#include "SND_AudioDevice.h"
|
||||
#include "SoundDefines.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class SND_FmodDevice : public SND_AudioDevice
|
||||
{
|
||||
public:
|
||||
|
||||
@@ -36,10 +36,6 @@
|
||||
#include "SoundDefines.h"
|
||||
#include "SND_IdObject.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class SND_AudioDevice : public SND_IAudioDevice
|
||||
{
|
||||
public:
|
||||
|
||||
@@ -41,10 +41,6 @@
|
||||
#include "GEN_List.h"
|
||||
#include "SoundDefines.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class SND_IdObject : public GEN_Link
|
||||
{
|
||||
SND_SoundObject* m_soundObject;
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
#include "SND_AudioDevice.h"
|
||||
#include "SoundDefines.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class SND_OpenALDevice : public SND_AudioDevice
|
||||
{
|
||||
public:
|
||||
|
||||
@@ -56,10 +56,6 @@
|
||||
|
||||
#include <stdio.h> /* for FILE */
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
typedef struct _AviChunk {
|
||||
int fcc;
|
||||
int size;
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
|
||||
#include <stdio.h> /* for FILE */
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "MEM_guardedalloc.h"
|
||||
|
||||
unsigned int GET_FCC (FILE *fp);
|
||||
|
||||
@@ -30,10 +30,6 @@
|
||||
* ***** END GPL/BL DUAL LICENSE BLOCK *****
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
void *avi_converter_from_avi_rgb (AviMovie *movie, int stream, unsigned char *buffer, int *size);
|
||||
void *avi_converter_to_avi_rgb (AviMovie *movie, int stream, unsigned char *buffer, int *size);
|
||||
|
||||
|
||||
@@ -40,10 +40,6 @@
|
||||
#include <stdio.h>
|
||||
#include "AVI_avi.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#define AVI_RAW 0
|
||||
#define AVI_CHUNK 1
|
||||
#define AVI_LIST 2
|
||||
|
||||
@@ -30,10 +30,6 @@
|
||||
* ***** END GPL/BL DUAL LICENSE BLOCK *****
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
void *avi_converter_from_mjpeg (AviMovie *movie, int stream, unsigned char *buffer, int *size);
|
||||
void *avi_converter_to_mjpeg (AviMovie *movie, int stream, unsigned char *buffer, int *size);
|
||||
|
||||
|
||||
@@ -30,10 +30,6 @@
|
||||
* ***** END GPL/BL DUAL LICENSE BLOCK *****
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
void *avi_converter_from_rgb32 (AviMovie *movie, int stream, unsigned char *buffer, int *size);
|
||||
void *avi_converter_to_rgb32 (AviMovie *movie, int stream, unsigned char *buffer, int *size);
|
||||
|
||||
|
||||
@@ -40,10 +40,6 @@
|
||||
|
||||
#include "DNA_listBase.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/**
|
||||
* The following structures are defined in DNA_action_types.h
|
||||
*/
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef BKE_ARMATURE_H
|
||||
#define BKE_ARMATURE_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct Bone;
|
||||
struct Main;
|
||||
struct bArmature;
|
||||
|
||||
@@ -37,10 +37,6 @@
|
||||
#ifndef BKE_BAD_LEVEL_CALLS_H
|
||||
#define BKE_BAD_LEVEL_CALLS_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/* readfile.c */
|
||||
struct PluginSeq;
|
||||
void open_plugin_seq(struct PluginSeq *pis, char *seqname);
|
||||
|
||||
@@ -36,11 +36,6 @@
|
||||
#ifndef BKE_BLENDER_H
|
||||
#define BKE_BLENDER_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
@@ -36,10 +36,6 @@
|
||||
#ifndef BKE_BMFONT_H
|
||||
#define BKE_BMFONT_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
@@ -36,10 +36,6 @@
|
||||
#ifndef BKE_BMFONT_TYPES_H
|
||||
#define BKE_BMFONT_TYPES_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#define is_power_of_two(N) ((N ^ (N - 1)) == (2 * N - 1))
|
||||
/*
|
||||
Moved to IMB_imbuf_types.h where it will live close to the ImBuf type.
|
||||
|
||||
@@ -32,10 +32,6 @@
|
||||
#ifndef BKE_BOOLEANOPS_H
|
||||
#define BKE_BOOLEANOPS_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct Mesh;
|
||||
struct Object;
|
||||
struct Base;
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
|
||||
#include "CSG_BooleanOps.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Internal mesh structure.
|
||||
* Safe to copy by value... hopefully.
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef BKE_CONSTRAINT_H
|
||||
#define BKE_CONSTRAINT_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct bConstraint;
|
||||
struct Object;
|
||||
struct ListBase;
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef BKE_CURVE_H
|
||||
#define BKE_CURVE_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct Curve;
|
||||
struct ListBase;
|
||||
struct Object;
|
||||
|
||||
@@ -38,10 +38,6 @@
|
||||
#ifndef BKE_DEFORM_H
|
||||
#define BKE_DEFORM_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct Object;
|
||||
struct ListBase;
|
||||
struct bDeformGroup;
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
#ifndef BKE_DISPLIST_H
|
||||
#define BKE_DISPLIST_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#define DL_POLY 0
|
||||
#define DL_SEGM 1
|
||||
#define DL_SURF 2
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef BKE_EFFECT_H
|
||||
#define BKE_EFFECT_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct Effect;
|
||||
struct ListBase;
|
||||
struct Object;
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef BKE_ENDIAN_H
|
||||
#define BKE_ENDIAN_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#define BKE_ENDIANNESS(a) { \
|
||||
union { \
|
||||
long l; \
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef BKE_EXOTIC_H
|
||||
#define BKE_EXOTIC_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct Mesh;
|
||||
|
||||
void mcol_to_rgba(unsigned int col, float *r, float *g, float *b, float *a);
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef BKE_VFONT_H
|
||||
#define BKE_VFONT_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct VFont;
|
||||
struct Object;
|
||||
struct Curve;
|
||||
|
||||
@@ -38,10 +38,6 @@
|
||||
#ifndef BKE_GLOBAL_H
|
||||
#define BKE_GLOBAL_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "DNA_listBase.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef BKE_GROUP_H
|
||||
#define BKE_GROUP_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct Group;
|
||||
struct GroupKey;
|
||||
struct GroupObject;
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef BKE_IKA_H
|
||||
#define BKE_IKA_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct Ika;
|
||||
struct Limb;
|
||||
struct Object;
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef BKE_IMAGE_H
|
||||
#define BKE_IMAGE_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef BKE_IPO_H
|
||||
#define BKE_IPO_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
typedef struct CfraElem {
|
||||
struct CfraElem *next, *prev;
|
||||
float cfra;
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef BKE_KEY_H
|
||||
#define BKE_KEY_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct Key;
|
||||
struct KeyBlock;
|
||||
struct ID;
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef BKE_LATTICE_H
|
||||
#define BKE_LATTICE_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct Lattice;
|
||||
struct Object;
|
||||
struct BPoint;
|
||||
|
||||
@@ -36,10 +36,6 @@
|
||||
#ifndef BKE_LIBRARY_TYPES_H
|
||||
#define BKE_LIBRARY_TYPES_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct ListBase;
|
||||
struct ID;
|
||||
struct Main;
|
||||
|
||||
@@ -41,10 +41,6 @@
|
||||
#ifndef BKE_MAIN_H
|
||||
#define BKE_MAIN_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "DNA_listBase.h"
|
||||
|
||||
struct Library;
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef BKE_MATERIAL_H
|
||||
#define BKE_MATERIAL_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef BKE_MBALL_H
|
||||
#define BKE_MBALL_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct MetaBall;
|
||||
struct Object;
|
||||
struct MetaElem;
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef BKE_MESH_H
|
||||
#define BKE_MESH_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/* texflag */
|
||||
#define AUTOSPACE 1
|
||||
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef BKE_NLA_H
|
||||
#define BKE_NLA_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct bActionStrip;
|
||||
struct ListBase;
|
||||
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef BKE_OBJECT_H
|
||||
#define BKE_OBJECT_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
@@ -34,11 +34,6 @@
|
||||
#ifndef BKE_OSA_TYPES_H
|
||||
#define BKE_OSA_TYPES_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
|
||||
/* typedef struct Osa */
|
||||
typedef struct RE_Osa
|
||||
{
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef BKE_PACKEDFILE_H
|
||||
#define BKE_PACKEDFILE_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct PackedFile;
|
||||
struct VFont;
|
||||
struct bSample;
|
||||
|
||||
@@ -37,10 +37,6 @@
|
||||
#ifndef BKE_PLUGIN_TYPES_H
|
||||
#define BKE_PLUGIN_TYPES_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct ImBuf;
|
||||
|
||||
typedef int (*TexDoit)(int, void*, float*, float*, float*);
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef BKE_PROPERTY_H
|
||||
#define BKE_PROPERTY_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct bProperty;
|
||||
struct ListBase;
|
||||
struct Object;
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef BKE_SCA_H
|
||||
#define BKE_SCA_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct Text;
|
||||
struct bSensor;
|
||||
struct Object;
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef BKE_SCENE_H
|
||||
#define BKE_SCENE_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct Scene;
|
||||
struct Object;
|
||||
struct Base;
|
||||
|
||||
@@ -34,12 +34,7 @@
|
||||
#ifndef BKE_SCREEN_H
|
||||
#define BKE_SCREEN_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
void free_screen(struct bScreen *sc);
|
||||
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef BKE_SOUND_H
|
||||
#define BKE_SOUND_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct PackedFile;
|
||||
struct bSound;
|
||||
struct bSample;
|
||||
|
||||
@@ -31,10 +31,6 @@
|
||||
#ifndef BKE_SUBSURF_H
|
||||
#define BKE_SUBSURF_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct Mesh;
|
||||
struct Object;
|
||||
struct Displist;
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef BKE_TEXT_H
|
||||
#define BKE_TEXT_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef BKE_TEXTURE_H
|
||||
#define BKE_TEXTURE_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct Tex;
|
||||
struct MTex;
|
||||
struct PluginTex;
|
||||
|
||||
@@ -36,10 +36,6 @@
|
||||
#ifndef BKE_UTILDEFINES_H
|
||||
#define BKE_UTILDEFINES_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifndef FALSE
|
||||
#define FALSE 0
|
||||
#endif
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef BKE_WORLD_H
|
||||
#define BKE_WORLD_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct World;
|
||||
|
||||
void free_world(struct World *sc);
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef BKE_WRITEAVI_H
|
||||
#define BKE_WRITEAVI_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
@@ -40,10 +40,6 @@
|
||||
#ifndef BLI_ARITHB_H
|
||||
#define BLI_ARITHB_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
@@ -65,10 +65,6 @@
|
||||
#ifndef BLI_BLENLIB_H
|
||||
#define BLI_BLENLIB_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "DNA_listBase.h" /* braindamage for the masses... needed
|
||||
because fillvlakbase and fillvertbase are
|
||||
used outside */
|
||||
|
||||
@@ -41,10 +41,6 @@
|
||||
#ifndef BLI_DYNSTR_H
|
||||
#define BLI_DYNSTR_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct DynStr;
|
||||
|
||||
/** The abstract DynStr type */
|
||||
|
||||
@@ -38,10 +38,6 @@
|
||||
#ifndef BLI_EDITVERT_H
|
||||
#define BLI_EDITVERT_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
typedef struct EditVert
|
||||
{
|
||||
struct EditVert *next, *prev, *vn;
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
#ifndef BLI_GHASH_H
|
||||
#define BLI_GHASH_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct GHash;
|
||||
typedef struct GHash GHash;
|
||||
|
||||
|
||||
@@ -36,10 +36,6 @@
|
||||
#ifndef BLI_GSQUEUE_H
|
||||
#define BLI_GSQUEUE_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
typedef struct _GSQueue GSQueue;
|
||||
|
||||
/**
|
||||
|
||||
@@ -36,10 +36,6 @@
|
||||
#ifndef BLI_LINKLIST_H
|
||||
#define BLI_LINKLIST_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct MemArena;
|
||||
|
||||
typedef void (*LinkNodeFreeFP)(void *link);
|
||||
|
||||
@@ -40,10 +40,6 @@
|
||||
#ifndef BLI_MEMARENA_H
|
||||
#define BLI_MEMARENA_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/* A reasonable standard buffer size, big
|
||||
* enough to not cause much internal fragmentation,
|
||||
* small enough not to waste resources
|
||||
|
||||
@@ -36,10 +36,6 @@
|
||||
#ifndef BLI_RAND_H
|
||||
#define BLI_RAND_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/** Seed the random number generator */
|
||||
void BLI_srand (unsigned int seed);
|
||||
|
||||
|
||||
@@ -38,10 +38,6 @@
|
||||
|
||||
#include <sys/stat.h>
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#define HDRSIZE 512
|
||||
#define NAMSIZE 200
|
||||
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
* ***** END GPL/BL DUAL LICENSE BLOCK *****
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifndef BLI_VFONTDATA_H
|
||||
#define BLI_VFONTDATA_H
|
||||
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
*/
|
||||
#pragma warning(once: 4761 4305 4244 4018)
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#define WIN32_LEAN_AND_MEAN
|
||||
#include <windows.h>
|
||||
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
#ifndef MATRIXOPS_H
|
||||
#define MATRIXOPS_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
#ifndef VECTOROPS_H
|
||||
#define VECTOROPS_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/* ------------------------------------------------------------------------- */
|
||||
|
||||
void MTC_diff3Int(int v1[3], int v2[3], int v3[3]);
|
||||
|
||||
@@ -32,10 +32,6 @@
|
||||
#ifndef __PIL_DYNLIB_H__
|
||||
#define __PIL_DYNLIB_H__
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
typedef struct PILdynlib PILdynlib;
|
||||
|
||||
PILdynlib*
|
||||
|
||||
@@ -36,10 +36,6 @@
|
||||
#ifndef PIL_TIME_H
|
||||
#define PIL_TIME_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
@@ -37,10 +37,6 @@
|
||||
#ifndef BLI_CALLBACKS_H
|
||||
#define BLI_CALLBACKS_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
// This is blenlib internal only
|
||||
void callLocalErrorCallBack(char* msg);
|
||||
int callLocalInterruptCallBack(void);
|
||||
|
||||
@@ -39,10 +39,6 @@
|
||||
#ifndef BLI_FILEOPS_H
|
||||
#define BLI_FILEOPS_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
char *first_slash(char *string);
|
||||
|
||||
/* only for the sane unix world: direct calls to system functions :( */
|
||||
|
||||
@@ -37,9 +37,5 @@
|
||||
#ifndef BLI_SCANFILL_H
|
||||
#define BLI_SCANFILL_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
@@ -31,10 +31,6 @@
|
||||
#ifndef BLI_STORAGE_H
|
||||
#define BLI_STORAGE_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "BLI_storage_types.h"
|
||||
|
||||
void BLI_adddirstrings(void);
|
||||
|
||||
@@ -36,17 +36,10 @@
|
||||
#ifndef BLI_UTIL_H
|
||||
#define BLI_UTIL_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#define mallocstructN(x,y,name) (x*)MEM_mallocN((y)* sizeof(x),name)
|
||||
#define callocstructN(x,y,name) (x*)MEM_callocN((y)* sizeof(x),name)
|
||||
|
||||
|
||||
struct ListBase;
|
||||
|
||||
/* void addlisttolist(struct ListBase *list1, struct ListBase *list2); */
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef BLO_GENFILE_H
|
||||
#define BLO_GENFILE_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
int BLO_findstruct_offset(char *structname, char *member);// used by py_main.c
|
||||
|
||||
#endif
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef BLO_READFILE_H
|
||||
#define BLO_READFILE_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
@@ -32,10 +32,6 @@
|
||||
#ifndef BLO_SOUNDFILE_H
|
||||
#define BLO_SOUNDFILE_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "DNA_sound_types.h"
|
||||
#include "DNA_packedFile_types.h"
|
||||
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef BLO_WRITEFILE_H
|
||||
#define BLO_WRITEFILE_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
int BLO_write_file(char *dir, int write_flags, char **error_r);
|
||||
void BLO_write_runtime(char *file, char *exename);
|
||||
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef GENFILE_H
|
||||
#define GENFILE_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct SDNA;
|
||||
|
||||
int dna_findstruct_nr(struct SDNA *sdna, char *str);
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef READFILE_H
|
||||
#define READFILE_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct OldNewMap;
|
||||
|
||||
typedef struct FileData {
|
||||
|
||||
@@ -31,10 +31,6 @@
|
||||
#ifndef FLOATPATCH_H
|
||||
#define FLOATPATCH_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/* floating point libs differ at systems... with these defines it comilies at all! */
|
||||
|
||||
#ifdef MIPS1
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#include <sys/types.h>
|
||||
#include "util.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#define IB_rect (1 << 0)
|
||||
#define IB_planes (1 << 1)
|
||||
#define IB_cmap (1 << 2)
|
||||
|
||||
@@ -31,10 +31,6 @@
|
||||
#ifndef PLUGIN_H
|
||||
#define PLUGIN_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "iff.h"
|
||||
#include "util.h"
|
||||
#include "floatpatch.h"
|
||||
|
||||
@@ -31,10 +31,6 @@
|
||||
#ifndef UTIL_H
|
||||
#define UTIL_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
@@ -30,10 +30,6 @@
|
||||
* ***** END GPL/BL DUAL LICENSE BLOCK *****
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct Text;
|
||||
struct ID;
|
||||
struct ScriptLink;
|
||||
|
||||
@@ -30,10 +30,6 @@
|
||||
* ***** END GPL/BL DUAL LICENSE BLOCK *****
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "DNA_ID.h"
|
||||
#include "DNA_listBase.h"
|
||||
#include "DNA_mesh_types.h"
|
||||
|
||||
@@ -30,10 +30,6 @@
|
||||
* ***** END GPL/BL DUAL LICENSE BLOCK *****
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
typedef struct {
|
||||
PyObject_HEAD
|
||||
PyObject *dict;
|
||||
|
||||
@@ -30,12 +30,7 @@
|
||||
* ***** END GPL/BL DUAL LICENSE BLOCK *****
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "BPY_macros.h"
|
||||
|
||||
#include "opy_datablock.h"
|
||||
#include "b_interface.h"
|
||||
|
||||
|
||||
@@ -36,10 +36,6 @@
|
||||
/** example: DEFFUNC_GETLIST(text) defines a method for getting a list
|
||||
* of text blocks */
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
// Example: _GETLIST(name) -> get_namelist
|
||||
#define _GETLIST(x) get_##x##list
|
||||
|
||||
|
||||
@@ -36,10 +36,6 @@
|
||||
|
||||
/* Hint: use gcc -E file.c to see what these macros are expanded in */
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "api.h" // temporary defines for API version
|
||||
|
||||
#include "BPY_listbase_macro.h"
|
||||
|
||||
@@ -31,10 +31,6 @@
|
||||
*/
|
||||
// Note: Functions prefixed with BPY_ are called from blenkernel routines */
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "Python.h" /* The python includes themselves. */
|
||||
#include "compile.h" /* to give us PyCodeObject */
|
||||
#include "eval.h" /* for PyEval_EvalCode.h */
|
||||
|
||||
@@ -31,10 +31,6 @@
|
||||
* these prototypes and init functions should be homogenized
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
extern PyObject *init_blender(void);
|
||||
extern PyObject *init_py_nmesh(void);
|
||||
extern PyObject *init_py_draw(void);
|
||||
|
||||
@@ -31,10 +31,6 @@
|
||||
*/
|
||||
/* tools.c */
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
extern PyObject *BPY_incr_ret (PyObject *ob);
|
||||
extern PyObject *BPY_err_ret_ob (PyObject *type, char *err);
|
||||
extern int py_err_ret_int (PyObject *type, char *err);
|
||||
|
||||
@@ -30,10 +30,6 @@
|
||||
* API defined Object types
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
extern PyTypeObject PyIpoCurve_Type, PyBezTriple_Type;
|
||||
extern PyTypeObject Button_Type, Buffer_Type;
|
||||
extern PyTypeObject NMesh_Type, NMFace_Type, NMVert_Type, NMCol_Type;
|
||||
|
||||
@@ -30,8 +30,5 @@
|
||||
* ***** END GPL/BL DUAL LICENSE BLOCK *****
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
void window_update_curCamera(Object *camera);
|
||||
|
||||
|
||||
@@ -34,11 +34,6 @@
|
||||
* see Makefile
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
|
||||
#undef EXPERIMENTAL /* undefine this for release, please :-) */
|
||||
|
||||
/* Uncomment this if you want to have the new blender module
|
||||
|
||||
@@ -31,10 +31,6 @@
|
||||
*/
|
||||
/* b_import.c */
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
PyObject *importText (char *name);
|
||||
PyObject *blender_import (PyObject *self, PyObject *args);
|
||||
void init_ourImport (void);
|
||||
|
||||
@@ -30,10 +30,6 @@
|
||||
* ***** END GPL/BL DUAL LICENSE BLOCK *****
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "DNA_ID.h"
|
||||
#include "DNA_mesh_types.h"
|
||||
#include "DNA_view3d_types.h"
|
||||
|
||||
@@ -30,10 +30,6 @@
|
||||
* ***** END GPL/BL DUAL LICENSE BLOCK *****
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "BSE_edit.h" // for getname_< >_ei()
|
||||
#include "BKE_global.h"
|
||||
#include "BKE_main.h"
|
||||
|
||||
@@ -31,10 +31,6 @@
|
||||
*/
|
||||
/* opy_nmesh.c */
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "DNA_mesh_types.h"
|
||||
|
||||
#define NMesh_Check(v) ((v)->ob_type == &NMesh_Type)
|
||||
|
||||
@@ -39,10 +39,6 @@
|
||||
/*****************************/
|
||||
/* temporar hack for typecasts */
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
typedef float (*Matrix4Ptr)[4];
|
||||
typedef struct {
|
||||
PyObject_VAR_HEAD
|
||||
|
||||
@@ -30,10 +30,6 @@
|
||||
* ***** END GPL/BL DUAL LICENSE BLOCK *****
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifndef BLO_DECRYPT_H
|
||||
#define BLO_DECRYPT_H
|
||||
|
||||
|
||||
@@ -31,10 +31,6 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifndef BLO_EN_DE_CRYPT_H
|
||||
#define BLO_EN_DE_CRYPT_H
|
||||
|
||||
|
||||
@@ -31,10 +31,6 @@
|
||||
* zlib deflate compression wrapper library interface
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifndef BLO_DEFLATE_H
|
||||
#define BLO_DEFLATE_H
|
||||
|
||||
|
||||
@@ -30,10 +30,6 @@
|
||||
* ***** END GPL/BL DUAL LICENSE BLOCK *****
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifndef BLO_ENCRYPT_H
|
||||
#define BLO_ENCRYPT_H
|
||||
|
||||
|
||||
@@ -94,10 +94,6 @@
|
||||
* ***** END GPL/BL DUAL LICENSE BLOCK *****
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifndef IMB_IMBUF_H
|
||||
#define IMB_IMBUF_H
|
||||
|
||||
|
||||
@@ -42,10 +42,6 @@
|
||||
* ***** END GPL/BL DUAL LICENSE BLOCK *****
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifndef IMB_IMBUF_TYPES_H
|
||||
#define IMB_IMBUF_TYPES_H
|
||||
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
#ifndef IMB_ALLOCIMBUF_H
|
||||
#define IMB_ALLOCIMBUF_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct ImBuf;
|
||||
|
||||
short imb_addrectImBuf(struct ImBuf * ibuf);
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
#ifndef IMB_AMIGA_H
|
||||
#define IMB_AMIGA_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct ImBuf;
|
||||
|
||||
struct ImBuf *imb_loadamiga(int *iffmem,int flags);
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
#ifndef IMB_BITPLANES_H
|
||||
#define IMB_BITPLANES_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct ImBuf;
|
||||
|
||||
void imb_bptolong(struct ImBuf *ibuf);
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
#ifndef IMB_BMP_H
|
||||
#define IMB_BMP_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct ImBuf;
|
||||
|
||||
int imb_is_a_bmp(void *buf);
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
#ifndef IMB_CMAP_H
|
||||
#define IMB_CMAP_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct ImBuf;
|
||||
|
||||
void imb_makecolarray(struct ImBuf *ibuf, unsigned char *mem, short nocols);
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
#ifndef IMB_DIVERS_H
|
||||
#define IMB_DIVERS_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct ImBuf;
|
||||
|
||||
void imb_checkncols(struct ImBuf *ibuf);
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
#ifndef IMB_FILTER_H
|
||||
#define IMB_FILTER_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct ImBuf;
|
||||
|
||||
void imb_filterx(struct ImBuf *ibuf);
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
#ifndef IMB_HAM_H
|
||||
#define IMB_HAM_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct ImBuf;
|
||||
|
||||
short imb_converttoham(struct ImBuf *ibuf);
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
#ifndef IMB_HAMX_H
|
||||
#define IMB_HAMX_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct ImBuf;
|
||||
|
||||
struct ImBuf *imb_loadanim(int *iffmem, int flags);
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
#ifndef IMB_IFF_H
|
||||
#define IMB_IFF_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct ImBuf;
|
||||
|
||||
unsigned short imb_start_iff(struct ImBuf *ibuf, int file);
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
#ifndef IMB_IRIS_H
|
||||
#define IMB_IRIS_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct ImBuf;
|
||||
|
||||
struct ImBuf *imb_loadiris(unsigned char *mem, int flags);
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
#ifndef IMB_JPEG_H
|
||||
#define IMB_JPEG_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct ImBuf;
|
||||
struct jpeg_compress_struct;
|
||||
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
#ifndef IMB_PNG_H
|
||||
#define IMB_PNG_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct ImBuf;
|
||||
|
||||
int imb_is_a_png(void *buf);
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
#ifndef IMB_TARGA_H
|
||||
#define IMB_TARGA_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct ImBuf;
|
||||
|
||||
int imb_is_a_targa(void *buf);
|
||||
|
||||
@@ -41,10 +41,6 @@
|
||||
#include <sys/types.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifndef WIN32
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
|
||||
@@ -38,10 +38,6 @@
|
||||
#ifndef IMBUF_PATCH_H
|
||||
#define IMBUF_PATCH_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/* most of imbuf uses this aloc, and it will disappear soon
|
||||
* (hopefully) (25-10-2001 nzc) */
|
||||
#include "MEM_guardedalloc.h"
|
||||
|
||||
@@ -32,10 +32,6 @@
|
||||
* ***** END GPL/BL DUAL LICENSE BLOCK *****
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/* rgbyuv is identiek aan rgbbeta */
|
||||
|
||||
float rgbyuv[4][4]={ /* afgeleid uit videoframer = Y Cr Cb in kopieen van Francois*/
|
||||
|
||||
@@ -36,10 +36,6 @@
|
||||
|
||||
#include <stddef.h>
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
typedef void* IMG_BrushPtr;
|
||||
typedef void* IMG_CanvasPtr;
|
||||
|
||||
|
||||
@@ -32,13 +32,8 @@
|
||||
#ifndef _H_IMG_BrushRGBA32
|
||||
#define _H_IMG_BrushRGBA32
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "IMG_PixmapRGBA32.h"
|
||||
|
||||
|
||||
/**
|
||||
* A brush used for drawing in pixmaps.
|
||||
* The brush is a pixmap as well.
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
#ifndef _H_IMG_CanvasRGBA32
|
||||
#define _H_IMG_CanvasRGBA32
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "IMG_PixmapRGBA32.h"
|
||||
#include "IMG_BrushRGBA32.h"
|
||||
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
#ifndef _H_IMG_Color
|
||||
#define _H_IMG_Color
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class IMG_ColorRGBA;
|
||||
|
||||
/**
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
#ifndef _H_IMG_Line
|
||||
#define _H_IMG_Line
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "IMG_Types.h"
|
||||
#include <math.h>
|
||||
|
||||
|
||||
@@ -37,10 +37,6 @@
|
||||
|
||||
#include <stddef.h>
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/**
|
||||
* A memory pointer for memory of any type.
|
||||
* It can be used to avoid memory leaks when allocating memory in constructors.
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
#ifndef _H_IMG_Pixmap
|
||||
#define _H_IMG_Pixmap
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "IMG_Types.h"
|
||||
#include "IMG_Color.h"
|
||||
#include "IMG_Rect.h"
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
#ifndef _H_IMG_PixmapRGBA32
|
||||
#define _H_IMG_PixmapRGBA32
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "IMG_Pixmap.h"
|
||||
#include "IMG_MemPtr.h"
|
||||
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
#ifndef _H_IMG_Rect
|
||||
#define _H_IMG_Rect
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "IMG_Types.h"
|
||||
#include "IMG_Line.h"
|
||||
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
#ifndef _H_IMG_Types
|
||||
#define _H_IMG_Types
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
typedef int TInt32;
|
||||
typedef unsigned char TUns8;
|
||||
typedef unsigned int TUns32;
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef BDR_DRAWACTION_H
|
||||
#define BDR_DRAWACTION_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct BezTriple;
|
||||
struct Ipo;
|
||||
struct gla2DDrawInfo;
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef BDR_DRAWMESH_H
|
||||
#define BDR_DRAWMESH_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct Image;
|
||||
struct TFace;
|
||||
struct Object;
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef BDR_DRAWOBJECT_H
|
||||
#define BDR_DRAWOBJECT_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef BDR_EDITCURVE_H
|
||||
#define BDR_EDITCURVE_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct Curve;
|
||||
struct Nurb;
|
||||
struct BezTriple;
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef BDR_EDITFACE_H
|
||||
#define BDR_EDITFACE_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct TFace;
|
||||
struct Mesh;
|
||||
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef BDR_EDITMBALL_H
|
||||
#define BDR_EDITMBALL_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
void make_editMball(void);
|
||||
void load_editMball(void);
|
||||
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef BDR_EDITOBJECT_H
|
||||
#define BDR_EDITOBJECT_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct TransVert;
|
||||
struct Object;
|
||||
struct TransOb;
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef BDR_ISECT_H
|
||||
#define BDR_ISECT_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct EditVert;
|
||||
struct EditVlak;
|
||||
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef BDR_VPAINT_H
|
||||
#define BDR_VPAINT_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct Mesh;
|
||||
struct MDeformVert; /* __NLA */
|
||||
unsigned int vpaint_get_current_col(void);
|
||||
|
||||
@@ -32,10 +32,6 @@
|
||||
#ifndef BIF_BUTTONS_H
|
||||
#define BIF_BUTTONS_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct Base;
|
||||
|
||||
extern void do_blenderbuttons(unsigned short event);
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef BIF_DRAWIMAGE_H
|
||||
#define BIF_DRAWIMAGE_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct SpaceImage;
|
||||
|
||||
void calc_image_view(struct SpaceImage *sima, char mode);
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef BIF_DRAWOOPS_H
|
||||
#define BIF_DRAWOOPS_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
void give_oopslink_line(Oops *oops, OopsLink *ol, float *v1, float *v2);
|
||||
void mysbox(float x1, float y1, float x2, float y2);
|
||||
void boundbox_oops(void);
|
||||
|
||||
@@ -30,10 +30,6 @@
|
||||
* ***** END GPL/BL DUAL LICENSE BLOCK *****
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct Scene;
|
||||
void set_scene(struct Scene *sce);
|
||||
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef BIF_DRAWSEQ_H
|
||||
#define BIF_DRAWSEQ_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct Sequence;
|
||||
void drawseqspace(void);
|
||||
void drawseq(struct Sequence *seq);
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef BIF_DRAWTEXT_H
|
||||
#define BIF_DRAWTEXT_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct ScrArea;
|
||||
struct SpaceText;
|
||||
struct Text;
|
||||
|
||||
@@ -32,10 +32,6 @@
|
||||
#ifndef BIF_EDITARMATURE_H
|
||||
#define BIF_EDITARMATURE_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct Object;
|
||||
struct Bone;
|
||||
struct bArmature;
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef BIF_EDITCONSTRAINT_H
|
||||
#define BIF_EDITCONSTRAINT_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct ListBase;
|
||||
struct Object;
|
||||
struct bConstraint;
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef BIF_DEFORM_H
|
||||
#define BIF_DEFORM_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct Object;
|
||||
struct MDeformVert;
|
||||
struct MDeformWeight;
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef BIF_EDITFONT_H
|
||||
#define BIF_EDITFONT_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
void do_textedit(unsigned short event, short val, char ascii);
|
||||
void make_editText(void);
|
||||
void load_editText(void);
|
||||
|
||||
@@ -30,10 +30,6 @@
|
||||
* ***** END GPL/BL DUAL LICENSE BLOCK *****
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct Group;
|
||||
void set_active_group(void);
|
||||
void add_selected_to_group(void);
|
||||
|
||||
@@ -30,10 +30,6 @@
|
||||
* ***** END GPL/BL DUAL LICENSE BLOCK *****
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct Object;
|
||||
void draw_ika(struct Object *ob, int sel);
|
||||
void draw_ika_nrs(struct Object *ob, int type);
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef BIF_EDITKEY_H
|
||||
#define BIF_EDITKEY_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct Key;
|
||||
struct KeyBlock;
|
||||
struct Mesh;
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef BIF_EDITLATTICE_H
|
||||
#define BIF_EDITLATTICE_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
void apply_lattice(void);
|
||||
void free_editLatt(void);
|
||||
void make_editLatt(void);
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef BIF_EDITMESH_H
|
||||
#define BIF_EDITMESH_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct EditVlak;
|
||||
struct EditEdge;
|
||||
struct EditVert;
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef BIF_EDITNLA_H
|
||||
#define BIF_EDITNLA_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
void clever_numbuts_nla(void);
|
||||
|
||||
#endif
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef BIF_EDITOOPS_H
|
||||
#define BIF_EDITOOPS_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
void borderselect_oops(void);
|
||||
void deselect_all_area_oops(void);
|
||||
void mouse_select_oops(void);
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef BIF_EDITSCA_H
|
||||
#define BIF_EDITSCA_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
void make_unique_prop_names(char *str);
|
||||
void do_gamebuts(unsigned short event);
|
||||
void gamebuts(void);
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef BIF_EDITSEQ_H
|
||||
#define BIF_EDITSEQ_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct Sequence;
|
||||
|
||||
void add_duplicate_seq(void);
|
||||
|
||||
@@ -30,10 +30,6 @@
|
||||
* ***** END GPL/BL DUAL LICENSE BLOCK *****
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
void clever_numbuts_sima(void);
|
||||
void borderselect_sima(void);
|
||||
void mouseco_to_curtile(void);
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef BIF_EDITSOUND_H
|
||||
#define BIF_EDITSOUND_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct bSound;
|
||||
struct bSample;
|
||||
struct ListBase;
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef BIF_EDITVIEW_H
|
||||
#define BIF_EDITVIEW_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct Base;
|
||||
struct Object;
|
||||
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef BSE_FSMENU_H
|
||||
#define BSE_FSMENU_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/** Returns the number of entries in the Fileselect Menu */
|
||||
int fsmenu_get_nentries (void);
|
||||
|
||||
|
||||
@@ -37,10 +37,6 @@
|
||||
#include <GL/gl.h>
|
||||
#include <GL/glu.h>
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/*
|
||||
* these should be phased out. cpack should be replaced in
|
||||
* code with calls to glColor3ub, lrectwrite probably should
|
||||
|
||||
@@ -37,10 +37,6 @@
|
||||
#ifndef BIF_GLUTIL_H
|
||||
#define BIF_GLUTIL_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct rcti;
|
||||
struct rctf;
|
||||
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef BIF_GRAPHICS_H
|
||||
#define BIF_GRAPHICS_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/* XXX, should move somewhere else, with collected windowing
|
||||
* stuff, to be done once the proper windowing stuff has
|
||||
* been formed.
|
||||
|
||||
@@ -32,10 +32,6 @@
|
||||
#ifndef BIF_IMASEL_H
|
||||
#define BIF_IMASEL_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct SpaceImaSel;
|
||||
struct OneSelectableIma;
|
||||
struct ScrArea;
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef BIF_INTERFACE_H
|
||||
#define BIF_INTERFACE_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct ID;
|
||||
struct ListBase;
|
||||
struct ScrArea;
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef BIF_KEYVAL_H
|
||||
#define BIF_KEYVAL_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
char *key_event_to_string(unsigned short event);
|
||||
|
||||
#endif
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
#ifndef BIF_MAINQUEUE_H
|
||||
#define BIF_MAINQUEUE_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#define MAXQUEUE 256
|
||||
|
||||
unsigned short mainqtest (void);
|
||||
|
||||
@@ -36,10 +36,6 @@
|
||||
#ifndef BIF_MYWINDOW_H
|
||||
#define BIF_MYWINDOW_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct rcti;
|
||||
|
||||
/*---*/
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef BIF_OOPS_H
|
||||
#define BIF_OOPS_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct Curve;
|
||||
struct Oops;
|
||||
struct OopsLink;
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef BIF_POSEOBJECT
|
||||
#define BIF_POSEOBJECT
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Activates posemode
|
||||
*/
|
||||
|
||||
@@ -30,10 +30,6 @@
|
||||
* ***** END GPL/BL DUAL LICENSE BLOCK *****
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct SpaceButs;
|
||||
|
||||
void BIF_preview_changed (struct SpaceButs *area);
|
||||
|
||||
@@ -30,10 +30,6 @@
|
||||
* ***** END GPL/BL DUAL LICENSE BLOCK *****
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct ScrArea;
|
||||
|
||||
void calc_renderwin_rectangle(int posmask, int renderpos_r[2], int rendersize_r[2]);
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef BIF_RESOURCES_H
|
||||
#define BIF_RESOURCES_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
typedef enum {
|
||||
#define BIFICONID_FIRST (ICON_VIEW3D)
|
||||
ICON_VIEW3D,
|
||||
|
||||
@@ -30,10 +30,6 @@
|
||||
* ***** END GPL/BL DUAL LICENSE BLOCK *****
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
* ***** END GPL/BL DUAL LICENSE BLOCK *****
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifndef BIF_SCREEN_H
|
||||
#define BIF_SCREEN_H
|
||||
|
||||
|
||||
@@ -30,10 +30,6 @@
|
||||
* ***** END GPL/BL DUAL LICENSE BLOCK *****
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifndef BIF_SPACE_H
|
||||
#define BIF_SPACE_H
|
||||
|
||||
|
||||
@@ -30,10 +30,6 @@
|
||||
* ***** END GPL/BL DUAL LICENSE BLOCK *****
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct ScrArea;
|
||||
|
||||
typedef struct _SpaceType SpaceType;
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef BIF_TOETS_H
|
||||
#define BIF_TOETS_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
void BIF_save_rendered_image(void);
|
||||
|
||||
int save_image_filesel_str(char *str);
|
||||
|
||||
@@ -30,10 +30,6 @@
|
||||
* ***** END GPL/BL DUAL LICENSE BLOCK *****
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/* TBOXX: breedte in pixels */
|
||||
#define TBOXXL 80
|
||||
#define TBOXXR 170
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef BIF_USIBLENDER_H
|
||||
#define BIF_USIBLENDER_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
void exit_usiblender(void);
|
||||
|
||||
void BIF_init(void);
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef _WIN32
|
||||
|
||||
void start_avi_codec(void);
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef BIF_WRITEIMAGE_H
|
||||
#define BIF_WRITEIMAGE_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct ImBuf;
|
||||
struct EnvMap;
|
||||
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef BIF_WRITEMOVIE_H
|
||||
#define BIF_WRITEMOVIE_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
void start_movie(void);
|
||||
void append_movie(int fnum);
|
||||
void end_movie(void);
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef BSE_BUTTONS_H
|
||||
#define BSE_BUTTONS_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct ID;
|
||||
|
||||
void test_meshpoin_but(char *name, struct ID **idpp);
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef BSE_DRAWIMASEL_H
|
||||
#define BSE_DRAWIMASEL_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct SpaceImaSel;
|
||||
|
||||
void viewgate(short sx, short sy, short ex, short ey);
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef BSE_DRAWIPO_H
|
||||
#define BSE_DRAWIPO_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct EditIpo;
|
||||
struct View2D;
|
||||
struct rctf;
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef BSE_DRAWNLA_H
|
||||
#define BSE_DRAWNLA_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
void drawnlaspace(void);
|
||||
|
||||
#endif /* BSE_DRAWNLA */
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef BSE_DRAWOOPS_H
|
||||
#define BSE_DRAWOOPS_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct Oops;
|
||||
struct uiBlock;
|
||||
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef BSE_DRAWVIEW_H
|
||||
#define BSE_DRAWVIEW_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct Object;
|
||||
struct BGpic;
|
||||
struct rcti;
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef BSE_EDIT_H
|
||||
#define BSE_EDIT_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct Object;
|
||||
struct rcti;
|
||||
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef BSE_EDITACTION_H
|
||||
#define BSE_EDITACTION_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct bAction;
|
||||
struct bActionChannel;
|
||||
struct bPoseChannel;
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef BSE_EDITACTION_TYPES_H
|
||||
#define BSE_EDITACTION_TYPES_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#define CHANNELHEIGHT 16
|
||||
#define CHANNELSKIP 2
|
||||
#define ACTWIDTH 128
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef BSE_EDITIPO_H
|
||||
#define BSE_EDITIPO_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct TransVert;
|
||||
struct IpoCurve;
|
||||
struct BezTriple;
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef BSE_EDITIPO_TYPES_H
|
||||
#define BSE_EDITIPO_TYPES_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct BezTriple;
|
||||
|
||||
typedef struct IpoKey {
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef BSE_EDITNLA_TYPES_H
|
||||
#define BSE_EDITNLA_TYPES_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#define NLAWIDTH 196
|
||||
#define NLACHANNELHEIGHT 16
|
||||
#define NLACHANNELSKIP 1
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef BSE_FILESEL_H
|
||||
#define BSE_FILESEL_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct SpaceFile;
|
||||
struct direntry;
|
||||
struct ID;
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef BSE_HEADERBUTTONS_H
|
||||
#define BSE_HEADERBUTTONS_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct uiBlock;
|
||||
struct ID;
|
||||
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef BSE_SEQUENCE_H
|
||||
#define BSE_SEQUENCE_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct PluginSeq;
|
||||
struct StripElem;
|
||||
struct Strip;
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef BSE_TRANS_TYPES_H
|
||||
#define BSE_TRANS_TYPES_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct Object;
|
||||
/* struct EditVlak; */
|
||||
/* struct EditEdge; */
|
||||
|
||||
@@ -32,10 +32,6 @@
|
||||
/* forward declarations for some prototype header */
|
||||
/* these may wildly occur in other header files, too */
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct BGpic;
|
||||
struct SpaceText;
|
||||
struct Oops;
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef BSE_VIEW_H
|
||||
#define BSE_VIEW_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct Object;
|
||||
struct BoundBox;
|
||||
struct View3D;
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef LOD_DEPENDKLUDGE_H
|
||||
#define LOD_DEPENDKLUDGE_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#define NAN_DECIMATION
|
||||
|
||||
#endif //LOD_DEPENDKLUDGE_H
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef TPT_DEPENDKLUDGE_H
|
||||
#define TPT_DEPENDKLUDGE_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#define NAN_TPT
|
||||
//#undef NAN_TPT
|
||||
|
||||
|
||||
@@ -31,10 +31,6 @@
|
||||
#ifndef BLENDEF_H
|
||||
#define BLENDEF_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef WIN32
|
||||
#else
|
||||
#ifndef __BeOS
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
#ifndef DATATOC_H
|
||||
#define DATATOC_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
extern int datatoc_B_blend_size;
|
||||
extern char datatoc_B_blend[];
|
||||
|
||||
|
||||
@@ -36,10 +36,6 @@
|
||||
#define EDITLATTICE_EXT_H "$Id$"
|
||||
#define EDITLATTICE_EXT_H "Copyright (C) 2001 NaN Technologies B.V.
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
void end_latt_deform(void);
|
||||
|
||||
#endif /* EDITLATTICE_EXT_H */
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef INTERFACE_H
|
||||
#define INTERFACE_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/* general defines */
|
||||
|
||||
#define UI_MAX_DRAW_STR 180
|
||||
|
||||
@@ -37,10 +37,6 @@
|
||||
#ifndef IPO_H
|
||||
#define IPO_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct BezTriple;
|
||||
|
||||
typedef struct IpoKey {
|
||||
|
||||
@@ -29,10 +29,6 @@
|
||||
* ***** END GPL/BL DUAL LICENSE BLOCK *****
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#define KEY_GETPTR(x) (g_ptrtab ? g_ptrtab[x] : 0)
|
||||
|
||||
/* these are the defines for the keyed functions:
|
||||
|
||||
@@ -32,10 +32,6 @@
|
||||
#ifndef LICENCEKEY_H
|
||||
#define LICENCEKEY_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#define I_AM_PUBLISHER temp_val2
|
||||
#define LICENSE_KEY_VALID temp_val
|
||||
#define SHOW_LICENSE_KEY rotop
|
||||
|
||||
@@ -38,10 +38,6 @@
|
||||
* ***** END GPL/BL DUAL LICENSE BLOCK *****
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/* MOUSE : 0x00x */
|
||||
|
||||
#define LEFTMOUSE 0x001
|
||||
|
||||
@@ -53,10 +53,6 @@
|
||||
#ifndef NLA_H
|
||||
#define NLA_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#define __NLA
|
||||
|
||||
#define __NLA_BAKE // Not for release: Not yet fully implemented
|
||||
|
||||
@@ -31,10 +31,6 @@
|
||||
#ifndef OBJFNTDEF
|
||||
#define OBJFNTDEF
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
typedef struct chardesc {
|
||||
short movex, movey; /* advance */
|
||||
short llx, lly; /* bounding box */
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef PARTICLE_EFFECT_H
|
||||
#define PARTICLE_EFFECT_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/* effect.c */
|
||||
extern Effect *add_effect(int type);
|
||||
extern PartEff *give_parteff(Object *ob);
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef PLAYANIM_EXT_H
|
||||
#define PLAYANIM_EXT_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/* used in apps */
|
||||
extern void playanim(int argc, char **argv);
|
||||
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef BLO_IN_DE_FLATE_H
|
||||
#define BLO_IN_DE_FLATE_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef BLO_INFLATE_H
|
||||
#define BLO_INFLATE_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
@@ -36,10 +36,6 @@
|
||||
#ifndef DNA_ID_H
|
||||
#define DNA_ID_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
@@ -39,10 +39,6 @@
|
||||
#ifndef DNA_ACTION_TYPES_H
|
||||
#define DNA_ACTION_TYPES_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "DNA_listBase.h"
|
||||
#include "DNA_ID.h"
|
||||
#include "DNA_view2d_types.h"
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef DNA_ACTUATOR_TYPES_H
|
||||
#define DNA_ACTUATOR_TYPES_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct Object;
|
||||
struct Mesh;
|
||||
struct Scene;
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef DNA_ARMATURE_TYPES_H
|
||||
#define DNA_ARMATURE_TYPES_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "DNA_listBase.h"
|
||||
#include "DNA_ID.h"
|
||||
|
||||
|
||||
@@ -37,10 +37,6 @@
|
||||
#include "DNA_ID.h"
|
||||
#include "DNA_scriptlink_types.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef DNA_CONSTRAINT_TYPES_H
|
||||
#define DNA_CONSTRAINT_TYPES_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "DNA_ID.h"
|
||||
#include "DNA_ipo_types.h"
|
||||
#include "DNA_object_types.h"
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef DNA_CONTROLLER_TYPES_H
|
||||
#define DNA_CONTROLLER_TYPES_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct bActuator;
|
||||
struct Text;
|
||||
struct bSensor;
|
||||
|
||||
@@ -36,10 +36,6 @@
|
||||
#ifndef DNA_CURVE_TYPES_H
|
||||
#define DNA_CURVE_TYPES_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "DNA_listBase.h"
|
||||
#include "DNA_vec_types.h"
|
||||
#include "DNA_ID.h"
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef DNA_EFFECT_TYPES_H
|
||||
#define DNA_EFFECT_TYPES_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/* DENK ERAAN: NIEUWE EFFECTEN OOK IN DE WRITEFILE.C IVM DNA!!! */
|
||||
|
||||
#define PAF_MAXMULT 4
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef DNA_FILEGLOBAL_TYPES_H
|
||||
#define DNA_FILEGLOBAL_TYPES_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/**
|
||||
* FileGlobal stores a part of the current user-unterface settings at
|
||||
* the moment of saving, and the file-specific settings.
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef DNA_GROUP_TYPES_H
|
||||
#define DNA_GROUP_TYPES_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "DNA_listBase.h"
|
||||
#include "DNA_ID.h"
|
||||
|
||||
|
||||
@@ -40,11 +40,6 @@
|
||||
#include "DNA_listBase.h"
|
||||
#include "DNA_ID.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
|
||||
struct Object;
|
||||
struct Ipo;
|
||||
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef DNA_IMAGE_TYPES_H
|
||||
#define DNA_IMAGE_TYPES_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "DNA_ID.h"
|
||||
|
||||
struct PackedFile;
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef DNA_IPO_TYPES_H
|
||||
#define DNA_IPO_TYPES_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "DNA_listBase.h"
|
||||
#include "DNA_vec_types.h"
|
||||
|
||||
|
||||
@@ -37,10 +37,6 @@
|
||||
#include "DNA_listBase.h"
|
||||
#include "DNA_ID.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct Ipo;
|
||||
|
||||
typedef struct KeyBlock {
|
||||
|
||||
@@ -37,10 +37,6 @@
|
||||
#include "DNA_ID.h"
|
||||
#include "DNA_scriptlink_types.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct MTex;
|
||||
struct Ipo;
|
||||
|
||||
|
||||
@@ -36,10 +36,6 @@
|
||||
#ifndef DNA_LATTICE_TYPES_H
|
||||
#define DNA_LATTICE_TYPES_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "DNA_ID.h"
|
||||
|
||||
struct BPoint;
|
||||
|
||||
@@ -39,10 +39,6 @@
|
||||
#ifndef DNA_LISTBASE_H
|
||||
#define DNA_LISTBASE_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef DNA_MATERIAL_TYPES_H
|
||||
#define DNA_MATERIAL_TYPES_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/* #include "BLI_listBase.h" */
|
||||
|
||||
#include "DNA_ID.h"
|
||||
|
||||
@@ -36,10 +36,6 @@
|
||||
#ifndef DNA_MESH_TYPES_H
|
||||
#define DNA_MESH_TYPES_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "DNA_listBase.h"
|
||||
#include "DNA_ID.h"
|
||||
|
||||
|
||||
@@ -34,11 +34,6 @@
|
||||
#ifndef DNA_META_TYPES_H
|
||||
#define DNA_META_TYPES_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
|
||||
#include "DNA_listBase.h"
|
||||
#include "DNA_ID.h"
|
||||
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef DNA_NLA_TYPES_H
|
||||
#define DNA_NLA_TYPES_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct bAction;
|
||||
struct Ipo;
|
||||
|
||||
|
||||
@@ -36,10 +36,6 @@
|
||||
#ifndef DNA_OBJECT_TYPES_H
|
||||
#define DNA_OBJECT_TYPES_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "DNA_listBase.h"
|
||||
#include "DNA_ID.h"
|
||||
#include "DNA_scriptlink_types.h"
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef DNA_OOPS_TYPES_H
|
||||
#define DNA_OOPS_TYPES_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#define OOPSX 5.0
|
||||
#define OOPSY 1.8
|
||||
|
||||
|
||||
@@ -36,10 +36,6 @@
|
||||
#ifndef DNA_PACKEDFILE_TYPES_H
|
||||
#define DNA_PACKEDFILE_TYPES_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
typedef struct PackedFile {
|
||||
int size;
|
||||
int seek;
|
||||
|
||||
@@ -37,10 +37,6 @@
|
||||
#ifndef DNA_PROPERTY_TYPES_H
|
||||
#define DNA_PROPERTY_TYPES_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/* ********************* PROPERTY ************************ */
|
||||
|
||||
typedef struct bProperty {
|
||||
|
||||
@@ -38,10 +38,6 @@
|
||||
#ifndef DNA_RADIO_TYPES_H
|
||||
#define DNA_RADIO_TYPES_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
typedef struct Radio {
|
||||
short hemires, maxiter;
|
||||
short drawtype, flag; /* bit 0 en 1: limits laten zien */
|
||||
|
||||
@@ -37,10 +37,6 @@
|
||||
#ifndef DNA_SCENE_TYPES_H
|
||||
#define DNA_SCENE_TYPES_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef DNA_SCREEN_TYPES_H
|
||||
#define DNA_SCREEN_TYPES_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "DNA_listBase.h"
|
||||
#include "DNA_vec_types.h"
|
||||
|
||||
|
||||
@@ -36,10 +36,6 @@
|
||||
#ifndef DNA_SCRIPTLINK_TYPES_H
|
||||
#define DNA_SCRIPTLINK_TYPES_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
@@ -34,12 +34,6 @@
|
||||
#ifndef DNA_SDNA_H
|
||||
#define DNA_SDNA_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#
|
||||
#
|
||||
struct SDNA {
|
||||
char *data;
|
||||
int datalen, nr_names;
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef DNA_SENSOR_TYPES_H
|
||||
#define DNA_SENSOR_TYPES_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct Object;
|
||||
struct Material;
|
||||
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef DNA_SEQUENCE_TYPES_H
|
||||
#define DNA_SEQUENCE_TYPES_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "DNA_listBase.h"
|
||||
|
||||
struct Ipo;
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef DNA_SOUND_TYPES_H
|
||||
#define DNA_SOUND_TYPES_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "DNA_listBase.h"
|
||||
#include "DNA_ID.h"
|
||||
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef DNA_SPACE_TYPES_H
|
||||
#define DNA_SPACE_TYPES_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "DNA_listBase.h"
|
||||
#include "DNA_vec_types.h"
|
||||
/* Hum ... Not really nice... but needed for spacebuts. */
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef DNA_TEXT_TYPES_H
|
||||
#define DNA_TEXT_TYPES_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "DNA_listBase.h"
|
||||
#include "DNA_ID.h"
|
||||
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef DNA_TEXTURE_TYPES_H
|
||||
#define DNA_TEXTURE_TYPES_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "DNA_ID.h"
|
||||
|
||||
struct Ipo;
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
#ifndef DNA_USERDEF_TYPES_H
|
||||
#define DNA_USERDEF_TYPES_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
typedef struct UserDef {
|
||||
short flag, dupflag;
|
||||
int savetime;
|
||||
|
||||
@@ -36,12 +36,7 @@
|
||||
#ifndef DNA_VEC_TYPES_H
|
||||
#define DNA_VEC_TYPES_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/* types */
|
||||
|
||||
typedef struct vec2s {
|
||||
short x, y;
|
||||
} vec2s;
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef DNA_VFONT_TYPES_H
|
||||
#define DNA_VFONT_TYPES_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "DNA_ID.h"
|
||||
|
||||
struct PackedFile;
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef DNA_VIEW2D_TYPES_H
|
||||
#define DNA_VIEW2D_TYPES_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "DNA_vec_types.h"
|
||||
|
||||
typedef struct View2D {
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef DNA_VIEW3D_TYPES_H
|
||||
#define DNA_VIEW3D_TYPES_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct Object;
|
||||
struct Image;
|
||||
struct Tex;
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef DNA_WAVE_TYPES_H
|
||||
#define DNA_WAVE_TYPES_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "DNA_ID.h"
|
||||
|
||||
struct Ipo;
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef DNA_WORLD_TYPES_H
|
||||
#define DNA_WORLD_TYPES_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "DNA_ID.h"
|
||||
#include "DNA_scriptlink_types.h"
|
||||
|
||||
|
||||
@@ -38,10 +38,6 @@
|
||||
#ifndef BLENDERTIMER_H
|
||||
#define BLENDERTIMER_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
@@ -43,10 +43,6 @@
|
||||
/* type include */
|
||||
#include "radio_types.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
extern RadGlobal RG;
|
||||
|
||||
/* radfactors.c */
|
||||
|
||||
@@ -41,10 +41,6 @@
|
||||
#include "DNA_listBase.h"
|
||||
#include "DNA_material_types.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#define DTWIRE 0
|
||||
#define DTGOUR 2
|
||||
#define DTSOLID 1
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef BLO_READBLENFILE_H
|
||||
#define BLO_READBLENFILE_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef BLO_KEYSTORE_H
|
||||
#define BLO_KEYSTORE_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef BLO_READSTREAMERRORS_H
|
||||
#define BLO_READSTREAMERRORS_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef BLO_READSTREAMGLUE_H
|
||||
#define BLO_READSTREAMGLUE_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
@@ -43,10 +43,6 @@
|
||||
#ifndef BLO_SYS_TYPES_H
|
||||
#define BLO_SYS_TYPES_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef BLO_KEYSTOREPRIVATE_H
|
||||
#define BLO_KEYSTOREPRIVATE_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
@@ -31,10 +31,6 @@
|
||||
* streamglue loopback. Needed at start of Read stream.
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct readStreamGlueLoopBackStruct {
|
||||
struct readStreamGlueStruct *streamGlue;
|
||||
void *endControl;
|
||||
|
||||
@@ -44,15 +44,10 @@
|
||||
#include "BKE_osa_types.h"
|
||||
#include "DNA_material_types.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
|
||||
/* For #undefs of stupid windows defines */
|
||||
#ifdef WIN32
|
||||
#include "BLI_winstuff.h"
|
||||
|
||||
@@ -35,17 +35,11 @@
|
||||
|
||||
#include "DNA_scene_types.h"
|
||||
#include "DNA_world_types.h"
|
||||
/* ------------------------------------------------------------------------- */
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/* Definitely weird: this equals 1<<21... so wtf?*/
|
||||
#define MAXVERT (2<<20)
|
||||
#define MAXVLAK (2<<20)
|
||||
|
||||
|
||||
/* This is needed to not let VC choke on near and far... old
|
||||
* proprietary MS extensions... */
|
||||
#ifdef WIN32
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
|
||||
#include "RE_ShadowBuffer.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct LampRen;
|
||||
|
||||
class RE_DummyShadowBuffer : public RE_ShadowBuffer {
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
|
||||
#include <iostream.h>
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct ShadBuf;
|
||||
struct LampRen;
|
||||
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
|
||||
#include "RE_ShadowBuffer.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct LampRen;
|
||||
struct Lamp;
|
||||
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef RE_CALLBACKS_H
|
||||
#define RE_CALLBACKS_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
@@ -35,12 +35,6 @@
|
||||
#ifndef EDGERENDER_H
|
||||
#define EDGERENDER_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/* ------------------------------------------------------------------------- */
|
||||
|
||||
/**
|
||||
* Add edges to <targetbuf>, which is of size <iw> by <ih>. Use <osanr>
|
||||
* samples, and intensity <i>. <compat> indicates an extra shift in the
|
||||
|
||||
@@ -35,13 +35,6 @@
|
||||
#ifndef ENVMAP_EXT_H
|
||||
#define ENVMAP_EXT_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/* no types!!! */
|
||||
/* #include "envmap_types.h" */
|
||||
|
||||
/**
|
||||
* Make environment maps for all objects in the scene that have an
|
||||
* environment map as texture.
|
||||
|
||||
@@ -35,11 +35,6 @@
|
||||
#ifndef ERRORHANDLER_H
|
||||
#define ERRORHANDLER_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/* ------------------------------------------------------------------------- */
|
||||
/* error codes */
|
||||
enum RE_RENDER_ERROR {
|
||||
RE_NO_ERROR,
|
||||
|
||||
@@ -35,11 +35,6 @@
|
||||
#ifndef GAMMACORRECTIONTABLES_H
|
||||
#define GAMMACORRECTIONTABLES_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
|
||||
/* Default gamma. For most CRTs, gamma ranges from 2.2 to 2.5 (Foley), so */
|
||||
/* 2.35 seems appropriate enough. Experience teaches a different number */
|
||||
/* though. Old blender: 2.0. It might be nice to make this a slider */
|
||||
|
||||
@@ -40,10 +40,6 @@
|
||||
#include "DNA_effect_types.h" /* for PartEff type */
|
||||
#include "render_types.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/* Functions */
|
||||
|
||||
void init_def_material(void);
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
#ifndef JITTER_H
|
||||
#define JITTER_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
@@ -34,12 +34,6 @@
|
||||
#ifndef OLD_ZBUFFER_TYPES_H
|
||||
#define OLD_ZBUFFER_TYPES_H "$Id$"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/* ------------------------------------------------------------------------- */
|
||||
|
||||
typedef struct PixStr
|
||||
{
|
||||
struct PixStr *next;
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
#ifndef OUTERRENDERLOOP_H
|
||||
#define OUTERRENDERLOOP_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Outer loop for rendering a single picture.
|
||||
*/
|
||||
|
||||
@@ -42,11 +42,6 @@
|
||||
/* own include */
|
||||
#include "pixelblending_types.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
|
||||
/**
|
||||
* Samples pixel, depending on R.osa setting
|
||||
*/
|
||||
|
||||
@@ -36,12 +36,6 @@
|
||||
#ifndef PIXELBLENDING_TYPES_H
|
||||
#define PIXELBLENDING_TYPES_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/* #include "blender.h" */
|
||||
|
||||
/* Threshold for a 'full' pixel: pixels with alpha above this level are */
|
||||
/* considered opaque This is the decimal value for 0xFFF0 / 0xFFFF */
|
||||
#define RE_FULL_COLOUR_FLOAT 0.9998
|
||||
|
||||
@@ -37,15 +37,8 @@
|
||||
#ifndef PIXELSHADING_H
|
||||
#define PIXELSHADING_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/* ------------------------------------------------------------------------- */
|
||||
|
||||
#include "render.h"
|
||||
#include "vanillaRenderPipe_types.h"
|
||||
/* ------------------------------------------------------------------------- */
|
||||
|
||||
/**
|
||||
* Render the pixel at (x,y) for object ap. Apply the jitter mask.
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
#ifndef RENDERHELP_EXT_H
|
||||
#define RENDERHELP_EXT_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
#ifndef RENDERPREANDPOST_H
|
||||
#define RENDERPREANDPOST_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
void prepareScene(void);
|
||||
void finalizeScene(void);
|
||||
void doClipping( void (*projectfunc)(float *, float *) );
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
* ***** END GPL/BL DUAL LICENSE BLOCK *****
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/* XXX, should die, no good reason to write
|
||||
* regular (non-file related) endian dependant
|
||||
* code.
|
||||
|
||||
@@ -36,10 +36,6 @@
|
||||
#define RENDERCORE_H
|
||||
#include "render_types.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct HaloRen;
|
||||
|
||||
float mistfactor(float *co); /* dist en hoogte, return alpha */
|
||||
|
||||
@@ -38,10 +38,6 @@
|
||||
#include "zbuf_types.h"
|
||||
#include "render_types.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/* float CookTorr(float *n, float *l, float *v, int hard); */
|
||||
void do_lamphalo_tex(LampRen *lar, float *p1, float *p2, float *intens);
|
||||
void spothalo(struct LampRen *lar, float *view, float *intens);
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
#ifndef SHADBUF_EXT_H
|
||||
#define SHADBUF_EXT_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "render_types.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef SHADOWBUFFER_H
|
||||
#define SHADOWBUFFER_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
@@ -36,13 +36,6 @@
|
||||
#define TEXTURE_EXT_H "$Id$"
|
||||
#define TEXTURE_EXT_H "Copyright (C) 2001 NaN Technologies B.V.
|
||||
|
||||
/* no types!!! */
|
||||
/* #include "texture_types.h" */
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct Tex;
|
||||
struct MTex;
|
||||
struct HaloRen;
|
||||
|
||||
@@ -37,10 +37,6 @@
|
||||
|
||||
#include "vanillaRenderPipe_types.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Render pipeline with all kinds of extras.
|
||||
* status-------------------------\/
|
||||
|
||||
@@ -38,10 +38,6 @@
|
||||
#include "vanillaRenderPipe_types.h"
|
||||
#include "zbufferdatastruct_types.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Z buffer initializer, for new pipeline.
|
||||
* <LI>
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
#ifndef VANILLARENDERPIPE_TYPES_H
|
||||
#define VANILLARENDERPIPE_TYPES_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/* Render defines */
|
||||
#define RE_MAX_OSA_COUNT 16 /* The max. number of possible oversamples */
|
||||
#define RE_MAX_FACES_PER_PIXEL 500 /* max. nr of faces rendered behind one */
|
||||
|
||||
@@ -36,10 +36,6 @@
|
||||
#ifndef ZBUF_H
|
||||
#define ZBUF_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
@@ -40,10 +40,6 @@
|
||||
#include "render_types.h"
|
||||
#include "zbuf_types.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Convert a homogenous coordinate to a z buffer coordinate. The
|
||||
* function makes use of Zmulx, Zmuly, the x and y scale factors for
|
||||
|
||||
@@ -36,10 +36,6 @@
|
||||
#ifndef ZBUF_TYPES_H
|
||||
#define ZBUF_TYPES_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
@@ -37,10 +37,6 @@
|
||||
|
||||
#include "zbufferdatastruct_types.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Set memory and counters for a fresh z buffer
|
||||
*/
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
#ifndef ZBUFFERDATASTRUCT_TYPES_H
|
||||
#define ZBUFFERDATASTRUCT_TYPES_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#define RE_ZBUFLEN 64 /* number of lines in the accumulation buffer */
|
||||
|
||||
/**
|
||||
|
||||
@@ -60,10 +60,6 @@
|
||||
#ifndef RE_RENDERCONVERTER_H
|
||||
#define RE_RENDERCONVERTER_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef BLO_SIGN_H
|
||||
#define BLO_SIGN_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
@@ -30,10 +30,6 @@
|
||||
* ***** END GPL/BL DUAL LICENSE BLOCK *****
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/* Abstract window operations */
|
||||
|
||||
typedef struct _Window Window;
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef BLO_SIGN_VERIFY_H
|
||||
#define BLO_SIGN_VERIFY_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
|
||||
#include "BLO_sign_verify_Header.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/* external struct for signer info */
|
||||
|
||||
struct BLO_SignerInfo {
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef BLO_VERIFY_H
|
||||
#define BLO_VERIFY_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef BLO_WRITEBLENFILE_H
|
||||
#define BLO_WRITEBLENFILE_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
@@ -32,15 +32,6 @@
|
||||
* STUB: give back the dataStreamPubKey
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
|
||||
int
|
||||
getPubKey(byte *dataStreamPubKey,
|
||||
int dataStreamPubKeyLen,
|
||||
byte **publisherPubKey,
|
||||
int *publisherPubKeyLen);
|
||||
|
||||
int getPubKey(byte *dataStreamPubKey, int dataStreamPubKeyLen,
|
||||
byte **publisherPubKey, int *publisherPubKeyLen);
|
||||
|
||||
|
||||
@@ -36,10 +36,6 @@
|
||||
#ifndef BLO_WRITESTREAMERRORS_H
|
||||
#define BLO_WRITESTREAMERRORS_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef BLO_WRITESTREAMGLUE_H
|
||||
#define BLO_WRITESTREAMGLUE_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
@@ -31,10 +31,6 @@
|
||||
* streamglue loopback adds a streamGlueHeader to start of the write stream
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
int
|
||||
BLO_dumpFromMemory(
|
||||
unsigned char *data,
|
||||
|
||||
@@ -32,10 +32,6 @@
|
||||
#ifndef __KX_BLENDERCANVAS
|
||||
#define __KX_BLENDERCANVAS
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef WIN32
|
||||
#include <windows.h>
|
||||
#endif
|
||||
|
||||
@@ -32,10 +32,6 @@
|
||||
#ifndef __BLENDERGL
|
||||
#define __BLENDERGL
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif //__cplusplus
|
||||
|
||||
@@ -32,10 +32,6 @@
|
||||
#ifndef __KX_BLENDERINPUTDEVICE
|
||||
#define __KX_BLENDERINPUTDEVICE
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable : 4786) // shut off 255 char limit debug template warning
|
||||
#endif
|
||||
|
||||
@@ -32,10 +32,6 @@
|
||||
#ifndef __KX_BLENDERKEYBOARDDEVICE
|
||||
#define __KX_BLENDERKEYBOARDDEVICE
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "KX_BlenderInputDevice.h"
|
||||
|
||||
class KX_BlenderKeyboardDevice : public BL_BlenderInputDevice
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
|
||||
#include "KX_BlenderInputDevice.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class KX_BlenderMouseDevice : public BL_BlenderInputDevice
|
||||
{
|
||||
public:
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
#include "RAS_MaterialBucket.h"
|
||||
#include "RAS_IRasterizer.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct TFace;
|
||||
extern "C" int set_tpage(TFace* tface); /* Worst hack ever */
|
||||
|
||||
|
||||
@@ -32,10 +32,6 @@
|
||||
#ifndef __KX_BLENDERRENDERTOOLS
|
||||
#define __KX_BLENDERRENDERTOOLS
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef WIN32
|
||||
// don't show stl-warnings
|
||||
#pragma warning (disable:4786)
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
|
||||
#include "blendertimer.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Blender System embedding. Needed when gameengine runs embedded within Blender.
|
||||
*/
|
||||
|
||||
@@ -36,10 +36,6 @@
|
||||
#include "SCA_IActuator.h"
|
||||
#include "MT_Point3.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class BL_ActionActuator : public SCA_IActuator
|
||||
{
|
||||
public:
|
||||
|
||||
@@ -37,10 +37,6 @@
|
||||
|
||||
#include "SG_IObject.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class BL_ActionActuator;
|
||||
|
||||
class BL_ArmatureObject : public KX_GameObject
|
||||
|
||||
@@ -36,10 +36,6 @@
|
||||
#include "KX_Python.h"
|
||||
#include "KX_PhysicsEngineEnums.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class RAS_MeshObject* BL_ConvertMesh(struct Mesh* mesh,struct Object* lightobj,class RAS_IRenderTools* rendertools,class KX_Scene* scene, class KX_BlenderSceneConverter *converter);
|
||||
|
||||
void BL_ConvertBlenderObjects(struct Main* maggie,
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef BL_DEFORMABLEGAMEOBJECT
|
||||
#define BL_DEFORMABLEGAMEOBJECT
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning (disable:4786) // get rid of stupid stl-visual compiler debug warning
|
||||
#endif //WIN32
|
||||
|
||||
@@ -38,10 +38,6 @@
|
||||
#include "MT_Point3.h"
|
||||
#include <stdlib.h>
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning (disable:4786) // get rid of stupid stl-visual compiler debug warning
|
||||
#endif //WIN32
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef BL_SKINDEFORMER
|
||||
#define BL_SKINDEFORMER
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning (disable:4786) // get rid of stupid stl-visual compiler debug warning
|
||||
#endif //WIN32
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef __BL_SKINMESHOBJECT
|
||||
#define __BL_SKINMESHOBJECT
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning (disable:4786) // get rid of stupid stl-visual compiler debug warning
|
||||
#endif //WIN32
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
#include "KX_WorldInfo.h"
|
||||
#include "KX_BlenderGL.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class BlenderWorldInfo : public KX_WorldInfo
|
||||
{
|
||||
bool m_hasworld;
|
||||
|
||||
@@ -36,10 +36,6 @@
|
||||
|
||||
#include "KX_IScalarInterpolator.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
typedef unsigned short BL_IpoChannel;
|
||||
|
||||
class BL_ScalarInterpolator : public KX_IScalarInterpolator {
|
||||
|
||||
@@ -38,10 +38,6 @@
|
||||
#include "KX_HashedPtr.h"
|
||||
#include "KX_IpoConvert.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class KX_WorldInfo;
|
||||
class SCA_IActuator;
|
||||
class SCA_IController;
|
||||
|
||||
@@ -32,10 +32,6 @@
|
||||
#ifndef __KX_CONVERTACTUATORS_H
|
||||
#define __KX_CONVERTACTUATORS_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
void BL_ConvertActuators(char* maggiename,
|
||||
struct Object* blenderobject,
|
||||
class KX_GameObject* gameobj,
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
|
||||
#include "KX_Python.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
void BL_ConvertControllers(
|
||||
struct Object* blenderobject,
|
||||
class KX_GameObject* gameobj,
|
||||
|
||||
@@ -32,10 +32,6 @@
|
||||
#ifndef __KX_CONVERTPROPERTIES
|
||||
#define __KX_CONVERTPROPERTIES
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
void BL_ConvertProperties(struct Object* object,
|
||||
class KX_GameObject* gameobj,
|
||||
class SCA_TimeEventManager* timemgr,
|
||||
|
||||
@@ -32,10 +32,6 @@
|
||||
#ifndef __KX_CONVERTSENSOR_H
|
||||
#define __KX_CONVERTSENSOR_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
void BL_ConvertSensors(struct Object* blenderobject,
|
||||
class KX_GameObject* gameobj,
|
||||
class SCA_LogicManager* logicmgr,
|
||||
|
||||
@@ -32,10 +32,6 @@
|
||||
#ifndef __KX_IPOCONVERT_H
|
||||
#define __KX_IPOCONVERT_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct Object;
|
||||
|
||||
void BL_ConvertIpos(struct Object* blenderobject,
|
||||
|
||||
@@ -17,10 +17,6 @@
|
||||
|
||||
#include "Value.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Smart Boolean Value class.
|
||||
* Is used by parser when an expression tree is build containing booleans.
|
||||
|
||||
@@ -19,10 +19,6 @@
|
||||
#include "Expression.h"
|
||||
#include "Value.h" // Added by ClassView
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class CConstExpr : public CExpression
|
||||
{
|
||||
//PLUGIN_DECLARE_SERIAL_EXPRESSION (CConstExpr,CExpression)
|
||||
|
||||
@@ -32,10 +32,6 @@
|
||||
#ifndef __EXPRESSION_INCLUDE
|
||||
#define __EXPRESSION_INCLUDE
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#define EXP_DECLARE_HANDLE(name) typedef struct name##__ { int unused; } *name
|
||||
|
||||
EXP_DECLARE_HANDLE(EXP_ValueHandle);
|
||||
|
||||
@@ -17,10 +17,6 @@
|
||||
|
||||
#include "Value.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class CListValue;
|
||||
|
||||
class CEmptyValue : public CPropValue
|
||||
|
||||
@@ -18,10 +18,6 @@
|
||||
|
||||
#include "Value.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class CErrorValue : public CPropValue
|
||||
{
|
||||
|
||||
|
||||
@@ -18,13 +18,7 @@
|
||||
|
||||
#include "Value.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
//extern int gRefCountExpr; // only for debugging purposes (detect mem.leaks)
|
||||
|
||||
|
||||
//extern int gRefCountExpr; // only for debugging purposes (detect mem.leaks)
|
||||
|
||||
|
||||
#define PLUGIN_DECLARE_SERIAL_EXPRESSION(class_name,base_class_name) \
|
||||
|
||||
@@ -17,10 +17,6 @@
|
||||
|
||||
#include "Value.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class CFloatValue : public CPropValue
|
||||
{
|
||||
//PLUGIN_DECLARE_SERIAL (CFloatValue,CValue)
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
|
||||
#include "Expression.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class CIdentifierExpr : public CExpression
|
||||
{
|
||||
CValue* m_idContext;
|
||||
|
||||
@@ -21,10 +21,6 @@
|
||||
|
||||
#include "Expression.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class CIfExpr : public CExpression
|
||||
{
|
||||
//PLUGIN_DECLARE_SERIAL_EXPRESSION (CIfExpr,CExpression)
|
||||
|
||||
@@ -17,10 +17,6 @@
|
||||
#ifndef __INPUTPARSER_H__
|
||||
#define __INPUTPARSER_H__
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class CParser;
|
||||
#include "Expression.h"
|
||||
|
||||
|
||||
@@ -18,10 +18,6 @@
|
||||
|
||||
#include "Value.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class CIntValue : public CPropValue
|
||||
{
|
||||
//PLUGIN_DECLARE_SERIAL (CIntValue,CValue)
|
||||
|
||||
@@ -32,13 +32,8 @@
|
||||
#ifndef __KX_HASHEDPTR
|
||||
#define __KX_HASHEDPTR
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
unsigned int KX_Hash(unsigned int inDWord);
|
||||
|
||||
|
||||
class CHashedPtr
|
||||
{
|
||||
void* m_valptr;
|
||||
|
||||
@@ -32,10 +32,6 @@
|
||||
#ifndef KX_PYTHON_H
|
||||
#define KX_PYTHON_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
//#define USE_DL_EXPORT
|
||||
#include "Python.h"
|
||||
|
||||
|
||||
@@ -32,10 +32,6 @@
|
||||
#ifndef KX_PYTHON_H
|
||||
#define KX_PYTHON_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
//#define USE_DL_EXPORT
|
||||
#include "Python.h"
|
||||
|
||||
|
||||
@@ -32,10 +32,6 @@
|
||||
#ifndef KX_PYTHON_H
|
||||
#define KX_PYTHON_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#define USE_DL_EXPORT
|
||||
#include "Python.h"
|
||||
|
||||
|
||||
@@ -16,10 +16,6 @@
|
||||
#if !defined _LISTVALUE_H
|
||||
#define _LISTVALUE_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "Value.h"
|
||||
|
||||
class CListValue : public CPropValue
|
||||
|
||||
@@ -18,10 +18,6 @@
|
||||
|
||||
#include "Expression.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class COperator1Expr : public CExpression
|
||||
{
|
||||
//PLUGIN_DECLARE_SERIAL_EXPRESSION (COperator1Expr,CExpression)
|
||||
|
||||
@@ -20,11 +20,6 @@
|
||||
#include "Expression.h"
|
||||
#include "Value.h" // Added by ClassView
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
|
||||
class COperator2Expr : public CExpression
|
||||
{
|
||||
//PLUGIN_DECLARE_SERIAL_EXPRESSION (COperator2Expr,CExpression)
|
||||
|
||||
@@ -30,10 +30,6 @@
|
||||
* ***** END GPL/BL DUAL LICENSE BLOCK *****
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifndef NO_EXP_PYTHON_EMBEDDING
|
||||
|
||||
#ifndef _adr_py_lib_h_ // only process once,
|
||||
|
||||
@@ -18,10 +18,6 @@
|
||||
|
||||
#include "Value.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class CStringValue : public CPropValue
|
||||
{
|
||||
|
||||
|
||||
@@ -13,17 +13,11 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning (disable:4786)
|
||||
#endif //WIN32
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////////////
|
||||
/////////////////////////////////////////////////////////////////////////////////////
|
||||
////
|
||||
//// Baseclass CValue
|
||||
//// Together with CExpression, CValue and it's derived classes can be used to
|
||||
//// parse expressions into a parsetree with error detecting/correcting capabilities
|
||||
@@ -41,7 +35,6 @@
|
||||
//// Some small editor-specific things added
|
||||
//// A helperclass CompressorArchive handles the serialization
|
||||
////
|
||||
////////////////////////////////////////////////////////////////////////////////////
|
||||
/////////////////////////////////////////////////////////////////////////////////////
|
||||
#ifndef __VALUE_H__
|
||||
#define __VALUE_H__
|
||||
@@ -49,9 +42,6 @@
|
||||
#include <map> // array functionality for the propertylist
|
||||
#include "STR_String.h" // STR_String class
|
||||
|
||||
|
||||
|
||||
|
||||
#ifndef GEN_NO_ASSERT
|
||||
#undef assert
|
||||
#define assert(exp) ((void)NULL)
|
||||
@@ -68,9 +58,6 @@
|
||||
#define debug(exp) ((void)NULL)
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
|
||||
#ifndef GEN_NO_ASSERTD
|
||||
#undef assertd
|
||||
#define assertd(exp) ((void)NULL)
|
||||
|
||||
@@ -15,10 +15,6 @@
|
||||
#if !defined _VECTORVALUE_H
|
||||
#define _VECTORVALUE_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "Value.h"
|
||||
|
||||
#define KX_X 0
|
||||
|
||||
@@ -35,11 +35,6 @@
|
||||
|
||||
#include "Value.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
|
||||
//
|
||||
// Void value, used to transport *any* type of data
|
||||
//
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
#ifndef __KX_ANDCONTROLLER
|
||||
#define __KX_ANDCONTROLLER
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "SCA_IController.h"
|
||||
|
||||
class SCA_ANDController : public SCA_IController
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#include "SCA_EventManager.h"
|
||||
#include <vector>
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
using namespace std;
|
||||
class SCA_AlwaysEventManager : public SCA_EventManager
|
||||
{
|
||||
|
||||
@@ -36,10 +36,6 @@
|
||||
#define __KX_ALWAYSSENSOR
|
||||
#include "SCA_ISensor.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class SCA_AlwaysSensor : public SCA_ISensor
|
||||
{
|
||||
Py_Header;
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
#include <vector>
|
||||
#include <algorithm>
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class SCA_EventManager
|
||||
{
|
||||
protected:
|
||||
|
||||
@@ -37,11 +37,6 @@
|
||||
|
||||
#include "SCA_IController.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
|
||||
class SCA_ExpressionController : public SCA_IController
|
||||
{
|
||||
// Py_Header;
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
#include "SCA_ILogicBrick.h"
|
||||
#include <vector>
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class SCA_IActuator : public SCA_ILogicBrick
|
||||
{
|
||||
protected:
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
|
||||
#include "SCA_ILogicBrick.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class SCA_IController : public SCA_ILogicBrick
|
||||
{
|
||||
protected:
|
||||
|
||||
@@ -36,10 +36,6 @@
|
||||
#ifndef KX_INPUTDEVICE_H
|
||||
#define KX_INPUTDEVICE_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class SCA_InputEvent
|
||||
{
|
||||
|
||||
|
||||
@@ -36,10 +36,6 @@
|
||||
#include "SCA_IObject.h"
|
||||
#include "BoolValue.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class SCA_ILogicBrick : public CValue
|
||||
{
|
||||
Py_Header;
|
||||
|
||||
@@ -39,20 +39,14 @@
|
||||
#include "Value.h"
|
||||
#include <vector>
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class SCA_ISensor;
|
||||
class SCA_IController;
|
||||
class SCA_IActuator;
|
||||
|
||||
|
||||
typedef std::vector<SCA_ISensor *> SCA_SensorList;
|
||||
typedef std::vector<SCA_IController *> SCA_ControllerList;
|
||||
typedef std::vector<SCA_IActuator *> SCA_ActuatorList;
|
||||
|
||||
|
||||
class SCA_IObject : public CValue
|
||||
{
|
||||
|
||||
|
||||
@@ -36,10 +36,6 @@
|
||||
|
||||
#include "STR_String.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct SCA_DebugProp
|
||||
{
|
||||
class CValue* m_obj;
|
||||
|
||||
@@ -37,10 +37,6 @@
|
||||
|
||||
#include "SCA_ILogicBrick.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Interface Class for all logic Sensors. Implements
|
||||
* pulsemode,pulsefrequency */
|
||||
|
||||
@@ -40,10 +40,6 @@
|
||||
|
||||
#include <vector>
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
using namespace std;
|
||||
|
||||
#include "SCA_IInputDevice.h"
|
||||
|
||||
@@ -38,10 +38,6 @@
|
||||
#include "BoolValue.h"
|
||||
#include <list>
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/**
|
||||
* The keyboard sensor listens to the keyboard, and passes on events
|
||||
* on selected keystrokes. It has an alternate mode in which it logs
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef __KX_LOGICMANAGER
|
||||
#define __KX_LOGICMANAGER
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning (disable:4786)
|
||||
#endif
|
||||
|
||||
@@ -41,10 +41,6 @@
|
||||
|
||||
#include <vector>
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
using namespace std;
|
||||
|
||||
#include "SCA_IInputDevice.h"
|
||||
|
||||
@@ -39,10 +39,6 @@
|
||||
#include "BoolValue.h"
|
||||
#include "SCA_IInputDevice.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class SCA_MouseSensor : public SCA_ISensor
|
||||
{
|
||||
Py_Header;
|
||||
|
||||
@@ -37,10 +37,6 @@
|
||||
|
||||
#include "SCA_IController.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class SCA_ORController : public SCA_IController
|
||||
{
|
||||
Py_Header;
|
||||
|
||||
@@ -37,10 +37,6 @@
|
||||
|
||||
#include "SCA_IActuator.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class SCA_PropertyActuator : public SCA_IActuator
|
||||
{
|
||||
Py_Header;
|
||||
|
||||
@@ -36,13 +36,8 @@
|
||||
|
||||
#include <vector>
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
using namespace std;
|
||||
|
||||
|
||||
class SCA_PropertyEventManager : public SCA_EventManager
|
||||
{
|
||||
class SCA_LogicManager* m_logicmgr;
|
||||
|
||||
@@ -37,10 +37,6 @@
|
||||
|
||||
#include "SCA_ISensor.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class SCA_PropertySensor : public SCA_ISensor
|
||||
{
|
||||
Py_Header;
|
||||
|
||||
@@ -39,10 +39,6 @@
|
||||
#include "SCA_LogicManager.h"
|
||||
#include "BoolValue.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class SCA_IObject;
|
||||
class SCA_PythonController : public SCA_IController
|
||||
{
|
||||
|
||||
@@ -39,10 +39,6 @@
|
||||
#include "SCA_IActuator.h"
|
||||
#include "SCA_RandomNumberGenerator.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class SCA_RandomActuator : public SCA_IActuator
|
||||
{
|
||||
Py_Header;
|
||||
|
||||
@@ -38,10 +38,6 @@
|
||||
#include "SCA_EventManager.h"
|
||||
#include <vector>
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
using namespace std;
|
||||
|
||||
class SCA_RandomEventManager : public SCA_EventManager
|
||||
|
||||
@@ -37,10 +37,6 @@
|
||||
#ifndef __KX_RANDOMNUMBERGENERATOR
|
||||
#define __KX_RANDOMNUMBERGENERATOR
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class SCA_RandomNumberGenerator {
|
||||
|
||||
/** base seed */
|
||||
|
||||
@@ -39,10 +39,6 @@
|
||||
#include "BoolValue.h"
|
||||
#include "SCA_RandomNumberGenerator.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class SCA_RandomSensor : public SCA_ISensor
|
||||
{
|
||||
Py_Header;
|
||||
|
||||
@@ -36,10 +36,6 @@
|
||||
#include "Value.h"
|
||||
#include <vector>
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
using namespace std;
|
||||
|
||||
class SCA_TimeEventManager : public SCA_EventManager
|
||||
|
||||
@@ -36,10 +36,6 @@
|
||||
#include "RAS_ICanvas.h"
|
||||
#include "RAS_Rect.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#if defined(WIN32) || defined(__APPLE__)
|
||||
#ifdef WIN32
|
||||
#pragma warning (disable:4786) // suppress stl-MSVC debug info warning
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef __GPC_ENGINE_H
|
||||
#define __GPC_ENGINE_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "GPC_Canvas.h"
|
||||
#include "GPC_System.h"
|
||||
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef __GPC_KEYBOARDDEVICE_H
|
||||
#define __GPC_KEYBOARDDEVICE_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning (disable : 4786)
|
||||
#endif // WIN32
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef __GPC_MOUSE_DEVICE_H
|
||||
#define __GPC_MOUSE_DEVICE_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning (disable : 4786)
|
||||
#endif // WIN32
|
||||
|
||||
@@ -35,11 +35,6 @@
|
||||
|
||||
#include "RAS_IPolygonMaterial.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
|
||||
class GPC_PolygonMaterial : public RAS_IPolyMaterial
|
||||
{
|
||||
struct TFace* m_tface;
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef __GPC_RAWIMAGE_H__
|
||||
#define __GPC_RAWIMAGE_H__
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/**
|
||||
* This memory resource reads images from the application resources.
|
||||
* Images are expected to be stored as raw RGBA bytes.
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef __GPC_RAWLOADDOTBLENDARRAY_H
|
||||
#define __GPC_RAWLOADDOTBLENDARRAY_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
void GetRawLoadingAnimation(unsigned char **data, int *dataSize);
|
||||
|
||||
#endif // __GPC_RAWLOADDOTBLENDARRAY_H
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef __GPC_RAWLOGOARRAYS_H
|
||||
#define __GPC_RAWLOGOARRAYS_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
void GetRawBlenderLogo(unsigned char **data, int *width, int *height);
|
||||
void GetRawBlender3DLogo(unsigned char **data, int *width, int *height);
|
||||
#if 0
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef __GPC_RENDERTOOLS_H
|
||||
#define __GPC_RENDERTOOLS_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#if defined(WIN32) || defined(__APPLE__)
|
||||
#ifdef WIN32
|
||||
#include <windows.h>
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef __GPC_SYSTEM_H
|
||||
#define __GPC_SYSTEM_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#if defined(WIN32)
|
||||
#pragma warning (disable:4786) // suppress stl-MSVC debug info warning
|
||||
#endif /* WIN32 */
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
|
||||
#include <iostream>
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "KXH_ketsji_hooks.h"
|
||||
#include "GPC_Canvas.h"
|
||||
|
||||
|
||||
@@ -37,10 +37,6 @@
|
||||
#include <X11/Intrinsic.h>
|
||||
#include <X11/StringDefs.h>
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#define Object DNA_Object // tricky stuff !!! but without it it doesn't compile...
|
||||
|
||||
#include "GPC_Engine.h"
|
||||
|
||||
@@ -40,10 +40,6 @@
|
||||
// Intrinsic.h . Yes, we are a bunch of sado-masochists. Let's hurt
|
||||
// ourselves!
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "GPC_KeyboardDevice.h"
|
||||
|
||||
class GPU_KeyboardDevice : public GPC_KeyboardDevice
|
||||
|
||||
@@ -33,13 +33,8 @@
|
||||
#ifndef __GPU_POLYGONMATERIAL_H
|
||||
#define __GPU_POLYGONMATERIAL_H
|
||||
|
||||
|
||||
#include "BP_PolygonMaterial.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class GPU_PolygonMaterial : public BP_PolygonMaterial
|
||||
{
|
||||
public:
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
|
||||
#include "GPC_System.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class GPU_System : public GPC_System
|
||||
{
|
||||
public:
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef _GPW_CANVAS_H_
|
||||
#define _GPW_CANVAS_H_
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning (disable:4786) // suppress stl-MSVC debug info warning
|
||||
#endif
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
|
||||
#include "GPC_Engine.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class GPW_Engine : public GPC_Engine
|
||||
{
|
||||
public:
|
||||
|
||||
@@ -38,10 +38,6 @@
|
||||
#include <windows.h>
|
||||
#include "GPC_KeyboardDevice.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Win32 implementation of GPC_KeyboardDevice.
|
||||
* The contructor fills the keyboard code translation map.
|
||||
|
||||
@@ -38,15 +38,10 @@
|
||||
|
||||
#include "GPC_System.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#if defined(__CYGWIN32__)
|
||||
# define __int64 long long
|
||||
#endif
|
||||
|
||||
|
||||
class GPW_System : public GPC_System
|
||||
{
|
||||
public:
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#include "GHOST_IEventConsumer.h"
|
||||
#include "STR_String.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class KX_KetsjiEngine;
|
||||
class KX_ISceneConverter;
|
||||
class NG_LoopBackNetworkDeviceInterface;
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef _GPG_CANVAS_H_
|
||||
#define _GPG_CANVAS_H_
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning (disable : 4786)
|
||||
#endif // WIN32
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef _GPG_KEYBOARDDEVICE_H_
|
||||
#define _GPG_KEYBOARDDEVICE_H_
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning (disable : 4786)
|
||||
#endif // WIN32
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
#ifndef _GPG_SYSTEM_H_
|
||||
#define _GPG_SYSTEM_H_
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning (disable:4786) // suppress stl-MSVC debug info warning
|
||||
#endif // WIN32
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
|
||||
#include "SCA_EventManager.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class KX_NetworkEventManager : public SCA_EventManager
|
||||
{
|
||||
class SCA_LogicManager* m_logicmgr;
|
||||
|
||||
@@ -37,10 +37,6 @@
|
||||
#include "SCA_IActuator.h"
|
||||
#include "NG_NetworkMessage.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class KX_NetworkMessageActuator : public SCA_IActuator
|
||||
{
|
||||
Py_Header;
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
|
||||
#include "SCA_ISensor.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class KX_NetworkEventManager;
|
||||
class NG_NetworkScene;
|
||||
|
||||
|
||||
@@ -30,7 +30,3 @@
|
||||
* ***** END GPL/BL DUAL LICENSE BLOCK *****
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
|
||||
@@ -30,7 +30,3 @@
|
||||
* ***** END GPL/BL DUAL LICENSE BLOCK *****
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
|
||||
@@ -38,10 +38,6 @@
|
||||
#include "SCA_IActuator.h"
|
||||
#include "SND_CDObject.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class KX_CDActuator : public SCA_IActuator
|
||||
{
|
||||
Py_Header;
|
||||
|
||||
@@ -44,11 +44,6 @@
|
||||
#include "IntValue.h"
|
||||
#include "RAS_CameraData.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
|
||||
class KX_Camera : public KX_GameObject
|
||||
{
|
||||
|
||||
|
||||
@@ -38,11 +38,6 @@
|
||||
#include "SCA_IActuator.h"
|
||||
#include "MT_Scalar.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
|
||||
/**
|
||||
* The camera actuator does a Robbie Muller prespective for you. This is a
|
||||
* weird set of rules that positions the camera sort of behind the object,
|
||||
|
||||
@@ -37,10 +37,6 @@
|
||||
|
||||
#include "KX_IInterpolator.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct RAS_CameraData;
|
||||
|
||||
class KX_CameraIpoSGController : public SG_Controller
|
||||
|
||||
@@ -32,10 +32,6 @@
|
||||
#ifndef __KX_CLIENTOBJECT_INFO_H
|
||||
#define __KX_CLIENTOBJECT_INFO_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Client Type and Additional Info. This structure can be use instead of a bare void* pointer, for safeness, and additional info for callbacks
|
||||
*/
|
||||
|
||||
@@ -38,11 +38,6 @@
|
||||
#include "SCA_IActuator.h"
|
||||
#include "MT_Scalar.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
|
||||
class KX_ConstraintActuator : public SCA_IActuator
|
||||
{
|
||||
Py_Header;
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
#include "Value.h"
|
||||
#include "PHY_DynamicTypes.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class KX_ConstraintWrapper : public PyObjectPlus
|
||||
{
|
||||
Py_Header;
|
||||
|
||||
@@ -33,17 +33,11 @@
|
||||
#define KX_CONVERTPHYSICSOBJECTS
|
||||
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
|
||||
//#define USE_SUMO_SOLID
|
||||
//solid is not available yet
|
||||
|
||||
#define USE_ODE
|
||||
|
||||
|
||||
class RAS_MeshObject;
|
||||
class KX_Scene;
|
||||
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#define __KX_EMPTYOBJECT
|
||||
#include "KX_GameObject.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class KX_EmptyObject : public KX_GameObject
|
||||
{
|
||||
public:
|
||||
|
||||
@@ -38,10 +38,6 @@
|
||||
|
||||
#include "SCA_IActuator.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class KX_GameActuator : public SCA_IActuator
|
||||
{
|
||||
Py_Header;
|
||||
|
||||
@@ -34,11 +34,6 @@
|
||||
#ifndef __KX_GAMEOBJECT
|
||||
#define __KX_GAMEOBJECT
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
|
||||
#ifdef WIN32
|
||||
// get rid of this stupid "warning 'this' used in initialiser list", generated by VC when including Solid/Sumo
|
||||
#pragma warning (disable : 4355)
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
|
||||
#include <vector>
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class KX_IInterpolator {
|
||||
public:
|
||||
virtual ~KX_IInterpolator() {}
|
||||
|
||||
@@ -37,10 +37,6 @@
|
||||
|
||||
#include "MT_Transform.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class KX_IPOTransform {
|
||||
public:
|
||||
KX_IPOTransform() :
|
||||
|
||||
@@ -38,10 +38,6 @@
|
||||
#include "KX_IPOTransform.h"
|
||||
#include "KX_IInterpolator.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class KX_IpoSGController : public SG_Controller
|
||||
{
|
||||
KX_IPOTransform m_ipo_xform;
|
||||
|
||||
@@ -37,10 +37,6 @@
|
||||
#include "MT_Point3.h"
|
||||
#include "MT_Matrix3x3.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/**
|
||||
Physics Controller, a special kind of Scene Graph Transformation Controller.
|
||||
It get's callbacks from Physics in case a transformation change took place.
|
||||
|
||||
@@ -32,10 +32,6 @@
|
||||
#ifndef KX_ISCALARINTERPOLATOR_H
|
||||
#define KX_ISCALARINTERPOLATOR_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class KX_IScalarInterpolator {
|
||||
public:
|
||||
virtual ~KX_IScalarInterpolator() {}
|
||||
|
||||
@@ -33,13 +33,8 @@
|
||||
#define __KX_ISCENECONVERTER_H
|
||||
|
||||
#include "STR_String.h"
|
||||
|
||||
#include "KX_Python.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class KX_ISceneConverter
|
||||
{
|
||||
|
||||
|
||||
@@ -40,10 +40,6 @@ using namespace std;
|
||||
|
||||
#include "STR_String.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/**
|
||||
* System Abstraction, needed only for getting some timing stuff from the host.
|
||||
*/
|
||||
|
||||
@@ -37,10 +37,6 @@
|
||||
|
||||
#include "SCA_IActuator.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class KX_IpoActuator : public SCA_IActuator
|
||||
{
|
||||
Py_Header;
|
||||
|
||||
@@ -43,10 +43,6 @@
|
||||
#include <vector>
|
||||
#include <set>
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class KX_TimeCategoryLogger;
|
||||
|
||||
#define LEFT_EYE 1
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
#include "RAS_LightObject.h"
|
||||
#include "KX_GameObject.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class KX_LightObject : public KX_GameObject
|
||||
{
|
||||
RAS_LightObject m_lightobj;
|
||||
|
||||
@@ -37,10 +37,6 @@
|
||||
|
||||
#include "KX_IInterpolator.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct RAS_LightObject;
|
||||
|
||||
class KX_LightIpoSGController : public SG_Controller
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
|
||||
#include "SCA_IObject.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class KX_MeshProxy : public SCA_IObject
|
||||
{
|
||||
Py_Header;
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
|
||||
#include "PHY_IMotionState.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class KX_MotionState : public PHY_IMotionState
|
||||
{
|
||||
class SG_Spatial* m_node;
|
||||
|
||||
@@ -35,11 +35,6 @@
|
||||
#define __KX_MOUSEFOCUSSENSOR
|
||||
|
||||
#include "SCA_MouseSensor.h"
|
||||
/* #include "SCA_IInputDevice.h" */
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/**
|
||||
* The mouse focus sensor extends the basic SCA_MouseSensor. It has
|
||||
|
||||
@@ -37,10 +37,6 @@
|
||||
|
||||
#include "KX_TouchSensor.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class KX_Scene;
|
||||
|
||||
class KX_NearSensor : public KX_TouchSensor
|
||||
|
||||
@@ -34,13 +34,8 @@
|
||||
|
||||
#include "SG_Controller.h"
|
||||
#include "SG_Spatial.h"
|
||||
|
||||
#include "KX_IInterpolator.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class KX_ObColorIpoSGController : public SG_Controller
|
||||
{
|
||||
public:
|
||||
|
||||
@@ -38,10 +38,6 @@
|
||||
#include "SCA_IActuator.h"
|
||||
#include "MT_Vector3.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
//
|
||||
// Bitfield that stores the flags for each CValue derived class
|
||||
//
|
||||
|
||||
@@ -25,10 +25,6 @@
|
||||
#include "KX_IPhysicsController.h"
|
||||
#include "OdePhysicsController.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/**
|
||||
Physics Controller, a special kind of Scene Graph Transformation Controller.
|
||||
It get's callbacks from Physics in case a transformation change took place.
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
|
||||
#include "KX_IInterpolator.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class MT_Matrix3x3;
|
||||
class KX_IScalarInterpolator;
|
||||
|
||||
|
||||
@@ -32,10 +32,6 @@
|
||||
#ifndef __KX_PHYSICSENGINEENUMS
|
||||
#define __KX_PHYSICSENGINEENUMS
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
enum e_PhysicsEngine
|
||||
{
|
||||
UseNone=1,
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
#include "Value.h"
|
||||
#include "PHY_DynamicTypes.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class KX_PhysicsObjectWrapper : public PyObjectPlus
|
||||
{
|
||||
Py_Header;
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
|
||||
#include <MT_Scalar.h>
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
// Properties of dynamic objects
|
||||
struct KX_ShapeProps {
|
||||
MT_Scalar m_mass; // Total mass
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
|
||||
#include "KX_IInterpolator.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class MT_Point3;
|
||||
class KX_IScalarInterpolator;
|
||||
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
|
||||
#include <Python.h>
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
PyObject* initPythonConstraintBinding();
|
||||
void PHY_RemovePythonConstraintBinding();
|
||||
void PHY_SetActiveEnvironment(class PHY_IPhysicsEnvironment* env);
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
#include "KX_Python.h"
|
||||
#include "STR_String.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
typedef enum {
|
||||
psl_Lowest = 0,
|
||||
psl_Highest
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
#include "KX_NearSensor.h"
|
||||
#include "MT_Point3.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Radar 'cone' sensor. Very similar to a near-sensor, but instead of a sphere, a cone is used.
|
||||
*/
|
||||
|
||||
@@ -38,10 +38,6 @@
|
||||
#include <vector>
|
||||
using namespace std;
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class KX_RayEventManager : public SCA_EventManager
|
||||
{
|
||||
|
||||
|
||||
@@ -38,10 +38,6 @@
|
||||
#include "SCA_ISensor.h"
|
||||
#include "MT_Point3.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class KX_RaySensor : public SCA_ISensor
|
||||
{
|
||||
Py_Header;
|
||||
|
||||
@@ -46,10 +46,6 @@
|
||||
|
||||
#include "MT_Vector3.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class SCA_IScene;
|
||||
|
||||
class KX_SCA_AddObjectActuator : public SCA_IActuator
|
||||
|
||||
@@ -40,10 +40,6 @@
|
||||
|
||||
#include "SCA_IActuator.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class SCA_IScene;
|
||||
|
||||
class KX_SCA_EndObjectActuator : public SCA_IActuator
|
||||
|
||||
@@ -46,10 +46,6 @@
|
||||
|
||||
#include "RAS_MeshObject.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class KX_SCA_ReplaceMeshActuator : public SCA_IActuator
|
||||
{
|
||||
Py_Header;
|
||||
|
||||
@@ -50,10 +50,6 @@
|
||||
#include "SG_Spatial.h"
|
||||
#include "SG_ParentRelation.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class KX_NormalParentRelation : public SG_ParentRelation
|
||||
{
|
||||
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
#include "MT_Scalar.h"
|
||||
#include "KX_IInterpolator.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class KX_IScalarInterpolator;
|
||||
|
||||
class KX_ScalarInterpolator : public KX_IInterpolator {
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
|
||||
#include "KX_IInterpolator.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class MT_Vector3;
|
||||
class KX_IScalarInterpolator;
|
||||
|
||||
|
||||
@@ -49,10 +49,6 @@
|
||||
#include "RAS_FramingManager.h"
|
||||
#include "RAS_Rect.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/**
|
||||
* @section Forward declarations
|
||||
*/
|
||||
|
||||
@@ -38,10 +38,6 @@
|
||||
|
||||
#include "SCA_IActuator.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class KX_SceneActuator : public SCA_IActuator
|
||||
{
|
||||
Py_Header;
|
||||
|
||||
@@ -37,10 +37,6 @@
|
||||
|
||||
#include "SCA_IActuator.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class KX_SoundActuator : public SCA_IActuator
|
||||
{
|
||||
Py_Header;
|
||||
|
||||
@@ -14,10 +14,6 @@
|
||||
#include "SumoPhysicsController.h"
|
||||
#include "KX_IPhysicsController.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class KX_SumoPhysicsController : public KX_IPhysicsController,
|
||||
public SumoPhysicsController
|
||||
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef __KX_TIME_CATEGORY_LOGGER_H
|
||||
#define __KX_TIME_CATEGORY_LOGGER_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning (disable:4786) // suppress stl-MSVC debug info warning
|
||||
#endif
|
||||
|
||||
@@ -33,15 +33,10 @@
|
||||
#ifndef __KX_TIME_LOGGER_H
|
||||
#define __KX_TIME_LOGGER_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning (disable:4786) // suppress stl-MSVC debug info warning
|
||||
#endif
|
||||
|
||||
|
||||
#include <deque>
|
||||
|
||||
/**
|
||||
|
||||
@@ -39,11 +39,6 @@
|
||||
#include <vector>
|
||||
using namespace std;
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
|
||||
class KX_TouchEventManager : public SCA_EventManager
|
||||
{
|
||||
class SCA_LogicManager* m_logicmgr;
|
||||
|
||||
@@ -40,10 +40,6 @@
|
||||
|
||||
#include "KX_ClientObjectInfo.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class KX_TouchSensor : public SCA_ISensor
|
||||
{
|
||||
protected:
|
||||
|
||||
@@ -38,10 +38,6 @@
|
||||
#include "SCA_IActuator.h"
|
||||
#include "SCA_IObject.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class KX_TrackToActuator : public SCA_IActuator
|
||||
{
|
||||
Py_Header;
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
|
||||
#include "SCA_IObject.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class KX_VertexProxy : public SCA_IObject
|
||||
{
|
||||
Py_Header;
|
||||
|
||||
@@ -36,10 +36,6 @@
|
||||
|
||||
#include "SCA_IActuator.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class KX_VisibilityActuator : public SCA_IActuator
|
||||
{
|
||||
Py_Header;
|
||||
|
||||
@@ -34,13 +34,8 @@
|
||||
|
||||
#include "MT_Scalar.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class MT_CmMatrix4x4;
|
||||
|
||||
|
||||
class KX_WorldInfo
|
||||
{
|
||||
public:
|
||||
|
||||
@@ -34,13 +34,8 @@
|
||||
|
||||
#include "SG_Controller.h"
|
||||
#include "SG_Spatial.h"
|
||||
|
||||
#include "KX_IInterpolator.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class KX_WorldIpoController : public SG_Controller
|
||||
{
|
||||
public:
|
||||
|
||||
@@ -36,10 +36,6 @@
|
||||
#include <deque>
|
||||
#include "NG_NetworkDeviceInterface.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class NG_LoopBackNetworkDeviceInterface : public NG_NetworkDeviceInterface
|
||||
{
|
||||
enum {
|
||||
|
||||
@@ -38,10 +38,6 @@
|
||||
#include "NG_NetworkMessage.h"
|
||||
#include <vector>
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class NG_NetworkDeviceInterface
|
||||
{
|
||||
private:
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
|
||||
#include "STR_HashedString.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class NG_NetworkMessage
|
||||
{
|
||||
static int s_nextID;
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
|
||||
#include "STR_String.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class NG_NetworkObject
|
||||
{
|
||||
STR_String m_name;
|
||||
|
||||
@@ -37,10 +37,6 @@
|
||||
#include "STR_HashedString.h"
|
||||
#include <vector>
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class NG_NetworkDeviceInterface;
|
||||
|
||||
class NG_NetworkScene
|
||||
|
||||
@@ -37,10 +37,6 @@
|
||||
#include "GASInterface.h"
|
||||
#include "NG_NetworkDeviceInterface.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class NG_TerraplayNetworkDeviceInterface : public NG_NetworkDeviceInterface
|
||||
{
|
||||
std::deque<NG_NetworkMessage*> m_messages;
|
||||
|
||||
@@ -25,11 +25,6 @@
|
||||
|
||||
#include "PHY_IPhysicsController.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
|
||||
/**
|
||||
ODE Physics Controller, a special kind of a PhysicsController.
|
||||
A Physics Controller is a special kind of Scene Graph Transformation Controller.
|
||||
|
||||
@@ -25,11 +25,6 @@
|
||||
|
||||
#include "PHY_IPhysicsEnvironment.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
|
||||
/**
|
||||
* Physics Environment takes care of stepping the simulation and is a container for physics entities (rigidbodies,constraints, materials etc.)
|
||||
* A derived class may be able to 'construct' entities by loading and/or converting
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
|
||||
#include "PHY_IPhysicsEnvironment.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/**
|
||||
* DummyPhysicsEnvironment is an empty placeholder
|
||||
* Alternatives are ODE,Sumo and Dynamo PhysicsEnvironments
|
||||
|
||||
@@ -1,10 +1,6 @@
|
||||
#ifndef SM_CALLBACK_H
|
||||
#define SM_CALLBACK_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class SM_Callback {
|
||||
public:
|
||||
virtual void do_me() = 0;
|
||||
|
||||
@@ -1,10 +1,6 @@
|
||||
#ifndef __SM_CLIENTOBJECT_INFO_H
|
||||
#define __SM_CLIENTOBJECT_INFO_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Client Type and Additional Info. This structure can be use instead of a bare void* pointer, for safeness, and additional info for callbacks
|
||||
*/
|
||||
|
||||
@@ -3,10 +3,6 @@
|
||||
|
||||
#include "SM_Object.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class SM_FhObject : public SM_Object {
|
||||
public:
|
||||
SM_FhObject() {}
|
||||
|
||||
@@ -3,10 +3,6 @@
|
||||
|
||||
#include "MT_Transform.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class SM_MotionState {
|
||||
public:
|
||||
SM_MotionState() :
|
||||
|
||||
@@ -9,10 +9,6 @@
|
||||
#include "SM_MotionState.h"
|
||||
#include <stdio.h>
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class SM_FhObject;
|
||||
|
||||
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
|
||||
#include <MT_Scalar.h>
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
// Properties of dynamic objects
|
||||
struct SM_ShapeProps {
|
||||
MT_Scalar m_mass; // Total mass
|
||||
|
||||
@@ -18,10 +18,6 @@
|
||||
#include "MT_Vector3.h"
|
||||
#include "MT_Point3.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class SM_Object;
|
||||
|
||||
class SM_Scene {
|
||||
|
||||
@@ -36,10 +36,6 @@
|
||||
#include "SM_Scene.h"
|
||||
#include "SM_Callback.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/**
|
||||
Sumo Physics Controller, a special kind of a PhysicsController.
|
||||
A Physics Controller is a special kind of Scene Graph Transformation Controller.
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
#include "PHY_IPhysicsEnvironment.h"
|
||||
#include "solid.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Physics Environment takes care of stepping the simulation and is a container for physics entities (rigidbodies,constraints, materials etc.)
|
||||
* A derived class may be able to 'construct' entities by loading and/or converting
|
||||
|
||||
@@ -3,10 +3,6 @@
|
||||
|
||||
#include "solid_types.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
@@ -3,10 +3,6 @@
|
||||
|
||||
#include "solid_types.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
@@ -3,10 +3,6 @@
|
||||
|
||||
#include "solid_types.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
@@ -1,10 +1,6 @@
|
||||
#ifndef SOLID_TYPES_H
|
||||
#define SOLID_TYPES_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#define DT_DECLARE_HANDLE(name) typedef struct name##__ { int unused; } *name
|
||||
|
||||
typedef double DT_Scalar;
|
||||
|
||||
@@ -32,10 +32,6 @@
|
||||
#ifndef __PHY_DYNAMIC_TYPES
|
||||
#define __PHY_DYNAMIC_TYPES
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/// PHY_ScalarType enumerates possible scalar types.
|
||||
/// See the PHY_IMeshInterface for its use
|
||||
typedef enum PHY_ScalarType {
|
||||
|
||||
@@ -32,10 +32,6 @@
|
||||
#ifndef PHY__MOTIONSTATE_H
|
||||
#define PHY__MOTIONSTATE_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/**
|
||||
PHY_IMotionState is the Interface to explicitly synchronize the world transformation.
|
||||
Default implementations for mayor graphics libraries like OpenGL and DirectX can be provided.
|
||||
|
||||
@@ -32,10 +32,6 @@
|
||||
#ifndef PHY_IPHYSICSCONTROLLER_H
|
||||
#define PHY_IPHYSICSCONTROLLER_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/**
|
||||
PHY_IPhysicsController is the abstract simplified Interface to a physical object.
|
||||
It contains the IMotionState and IDeformableMesh Interfaces.
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
#include <vector>
|
||||
#include "PHY_DynamicTypes.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Physics Environment takes care of stepping the simulation and is a container for physics entities (rigidbodies,constraints, materials etc.)
|
||||
* A derived class may be able to 'construct' entities by loading and/or converting
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
|
||||
#include <MT_Scalar.h>
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
// Properties of dynamic objects
|
||||
struct PHY_ShapeProps {
|
||||
MT_Scalar m_mass; // Total mass
|
||||
|
||||
@@ -38,10 +38,6 @@
|
||||
#include "RAS_MaterialBucket.h"
|
||||
#include "GEN_Map.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class RAS_BucketManager
|
||||
{
|
||||
|
||||
|
||||
@@ -32,10 +32,6 @@
|
||||
#ifndef __RAS_CAMERADATA_H
|
||||
#define __RAS_CAMERADATA_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct RAS_CameraData
|
||||
{
|
||||
float m_lens;
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef RAS_DEFORMER
|
||||
#define RAS_DEFORMER
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning (disable:4786) // get rid of stupid stl-visual compiler debug warning
|
||||
#endif //WIN32
|
||||
|
||||
@@ -32,10 +32,6 @@
|
||||
#ifndef RAS_FRAMINGMANAGER_H
|
||||
#define RAS_FRAMINGMANAGER_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class RAS_Rect;
|
||||
|
||||
/**
|
||||
|
||||
@@ -32,10 +32,6 @@
|
||||
#ifndef __RAS_ICANVAS
|
||||
#define __RAS_ICANVAS
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/**
|
||||
* 2D rendering device context. The connection from 3d rendercontext to 2d surface.
|
||||
*/
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
|
||||
#include "STR_HashedString.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Polygon Material on which the material buckets are sorted
|
||||
*
|
||||
|
||||
@@ -32,10 +32,6 @@
|
||||
#ifndef __RAS_IRASTERIZER
|
||||
#define __RAS_IRASTERIZER
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning (disable:4786)
|
||||
#endif
|
||||
|
||||
@@ -38,10 +38,6 @@
|
||||
#include <vector>
|
||||
#include <algorithm>
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class RAS_IPolyMaterial;
|
||||
struct RAS_LightObject;
|
||||
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
|
||||
#include "MT_CmMatrix4x4.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct RAS_LightObject
|
||||
{
|
||||
enum LightType{
|
||||
|
||||
@@ -44,10 +44,6 @@
|
||||
#include <set>
|
||||
using namespace std;
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
typedef vector< vector<class RAS_TexVert>* > vecVertexArray;
|
||||
typedef vector<unsigned int> KX_IndexArray;
|
||||
typedef vector< KX_IndexArray* > vecIndexArrays;
|
||||
|
||||
@@ -32,10 +32,6 @@
|
||||
#ifndef __RAS_MESHOBJECT
|
||||
#define __RAS_MESHOBJECT
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef WIN32
|
||||
// disable the STL warnings ("debug information length > 255")
|
||||
#pragma warning (disable:4786)
|
||||
|
||||
@@ -32,10 +32,6 @@
|
||||
#ifndef __RAS_OBJECTCOLOR_H
|
||||
#define __RAS_OBJECTCOLOR_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
struct RAS_ObjectColor {
|
||||
float m_red;
|
||||
float m_green;
|
||||
|
||||
@@ -32,10 +32,6 @@
|
||||
#ifndef __RAS_CHECKVERTEXARRAYS
|
||||
#define __RAS_CHECKVERTEXARRAYS
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
bool RAS_SystemSupportsVertexArrays();
|
||||
|
||||
#endif //__RAS_CHECKVERTEXARRAYS
|
||||
|
||||
@@ -32,10 +32,6 @@
|
||||
#ifndef __RAS_OPENGLRASTERIZER
|
||||
#define __RAS_OPENGLRASTERIZER
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning (disable:4786)
|
||||
#endif
|
||||
@@ -44,7 +40,6 @@
|
||||
#include <vector>
|
||||
using namespace std;
|
||||
|
||||
|
||||
#include "RAS_IRasterizer.h"
|
||||
#include "RAS_MaterialBucket.h"
|
||||
#include "RAS_ICanvas.h"
|
||||
|
||||
@@ -32,10 +32,6 @@
|
||||
#ifndef __KX_VERTEXARRAYOPENGLRASTERIZER
|
||||
#define __KX_VERTEXARRAYOPENGLRASTERIZER
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "RAS_OpenGLRasterizer.h"
|
||||
|
||||
class RAS_VAOpenGLRasterizer : public RAS_OpenGLRasterizer
|
||||
|
||||
@@ -32,12 +32,7 @@
|
||||
#ifndef __RAS_POLYGON
|
||||
#define __RAS_POLYGON
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "RAS_TexVert.h"
|
||||
//#include "KX_BoundingVolumes.h"
|
||||
#include "RAS_MaterialBucket.h"
|
||||
|
||||
#include <vector>
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef _RAS_RECT
|
||||
#define _RAS_RECT
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/**
|
||||
* @section interface class.
|
||||
* RAS_Rect just encodes a simple rectangle.
|
||||
|
||||
@@ -37,10 +37,6 @@
|
||||
#include "MT_Point2.h"
|
||||
#include "RAS_TexVert.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
void RAS_CalcTexMatrix(RAS_TexVert p[3],MT_Point3& origin,MT_Vector3& udir,MT_Vector3& vdir);
|
||||
|
||||
#endif //__RASTEXMATRIX
|
||||
|
||||
@@ -37,10 +37,6 @@
|
||||
#include "MT_Point2.h"
|
||||
#include "MT_Transform.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
static MT_Point3 g_pt3;
|
||||
static MT_Point2 g_pt2;
|
||||
|
||||
|
||||
@@ -37,10 +37,6 @@
|
||||
|
||||
#include "SG_IObject.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class SG_Controller
|
||||
{
|
||||
public:
|
||||
|
||||
@@ -36,10 +36,6 @@ base object that can be part of the scenegraph.
|
||||
*/
|
||||
#include <vector>
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class SG_Controller;
|
||||
class SG_IObject;
|
||||
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
#include "SG_Spatial.h"
|
||||
#include <vector>
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
typedef std::vector<SG_Node*> NodeList;
|
||||
|
||||
class SG_Node : public SG_Spatial
|
||||
|
||||
@@ -53,10 +53,6 @@
|
||||
#ifndef __SG_ParentRelation_h
|
||||
#define __SG_ParentRelation_h
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class SG_Spatial;
|
||||
|
||||
class SG_ParentRelation {
|
||||
|
||||
@@ -38,10 +38,6 @@
|
||||
#include <MT_Matrix3x3.h> // or Quaternion later ?
|
||||
#include "SG_IObject.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class SG_Node;
|
||||
class SG_ParentRelation;
|
||||
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
#include "STR_HashedString.h"
|
||||
#include "GEN_Map.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
template <class T>
|
||||
class GEN_DataCache
|
||||
{
|
||||
|
||||
@@ -33,10 +33,6 @@
|
||||
#ifndef __GEN_HASHEDPTR
|
||||
#define __GEN_HASHEDPTR
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
unsigned int GEN_Hash(unsigned int inDWord);
|
||||
|
||||
class GEN_HashedPtr
|
||||
|
||||
@@ -32,10 +32,6 @@
|
||||
#ifndef GEN_MAP_H
|
||||
#define GEN_MAP_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
template <class Key, class Value>
|
||||
class GEN_Map {
|
||||
private:
|
||||
|
||||
@@ -34,10 +34,6 @@
|
||||
|
||||
#include "MT_Point3.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class GEN_Matrix4x4
|
||||
{
|
||||
public:
|
||||
|
||||
@@ -37,10 +37,6 @@
|
||||
|
||||
#include <stdlib.h> // for NULL !
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/**
|
||||
* @section GEN_SmartPtr
|
||||
* This class defines a smart pointer similar to that defined in
|
||||
|
||||
@@ -38,10 +38,6 @@
|
||||
#include "STR_HashedString.h"
|
||||
#include "GEN_DataCache.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class SYS_SingletonSystem
|
||||
{
|
||||
public:
|
||||
|
||||
@@ -35,10 +35,6 @@
|
||||
#ifndef __SYSTEM_INCLUDE
|
||||
#define __SYSTEM_INCLUDE
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#define SYS_DECLARE_HANDLE(name) typedef struct name##__ { int unused; } *name
|
||||
|
||||
SYS_DECLARE_HANDLE(SYS_SystemHandle);
|
||||
|
||||
Reference in New Issue
Block a user