Add rayman2 source files

This commit is contained in:
2024-09-18 02:33:44 +08:00
parent bcc093f8ed
commit fb036c54fd
14339 changed files with 2596224 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
#################
# Version 5.0.3 #
#################
Change in emission.
#################
# Version 5.0.2 #
#################
Nonzero and smooth effect.
#################
# Version 5.0.1 #
#################
Disable memory overflowing
#################
# Version 5.0.0 #
#################
This is a new module which allows to compute radiosity from static lights with a 3DFX card.
For any questions ask to Christophe Durand.

View File

@@ -0,0 +1,23 @@
#ifndef __RAY_EXT
#define __RAY_EXT
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
#undef CPA_EXPORT
#if defined(CPA_WANTS_IMPORT)
#define CPA_EXPORT __declspec(dllimport)
#elif defined(CPA_WANTS_EXPORT)
#define CPA_EXPORT __declspec(dllexport)
#else
#define CPA_EXPORT
#endif
extern CPA_EXPORT void RAY_vComputeAllSector(HIE_tdxHandleToSuperObject _hSuperObject);
#ifdef __cplusplus
};
#endif /* __cplusplus */
#endif /*__RAY_EXT*/