Michaël Lemaire
4e70d8ca8c
git-svn-id: https://subversion.assembla.com/svn/thunderk/paysages@233 b1fd45b6-86a6-48da-8261-f70d1f35bdcc
20 lines
380 B
C
20 lines
380 B
C
#ifndef _PAYSAGES_AUTO_H_
|
|
#define _PAYSAGES_AUTO_H_
|
|
|
|
#include "renderer.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void autoSetDaytime(int hour, int minute);
|
|
void autoSetDaytimeFraction(double daytime);
|
|
void autoGenRealisticLandscape(int seed);
|
|
void autoRenderSceneTwoPass(Renderer* renderer, int postonly);
|
|
void autoRenderSceneRayTracing();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|