Welcome to mirror list, hosted at ThFree Co, Russian Federation.

manta.h « pwrapper « helper « mantaflow « extern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: efbca6cc49389ae15e2c58b9fbd2c541c460486f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/******************************************************************************
 *
 * MantaFlow fluid solver framework
 * Copyright 2011-2014 Tobias Pfaff, Nils Thuerey
 *
 * This program is free software, distributed under the terms of the
 * Apache License, Version 2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Include pwrapper headers
 *
 ******************************************************************************/

#ifndef _MANTA_H
#define _MANTA_H

// Remove preprocessor keywords, so there won't infere with autocompletion etc.
#define KERNEL(...) extern int i, j, k, idx, X, Y, Z;
#define PYTHON(...)
#define returns(X) extern X;
#define alias typedef

#include "general.h"
#include "vectorbase.h"
#include "vector4d.h"
#include "registry.h"
#include "pclass.h"
#include "pconvert.h"
#include "fluidsolver.h"

#endif