aboutsummaryrefslogtreecommitdiffstats
path: root/Game/Code/lib/projectM/1.0/cwrapper/projectM.cpp
diff options
context:
space:
mode:
authortobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c>2008-04-22 15:55:50 +0000
committertobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c>2008-04-22 15:55:50 +0000
commit0b5d88d2332b91211ae03a3364397369d155e6ba (patch)
tree40f3ed854d9d7525934060370caff7d510373a93 /Game/Code/lib/projectM/1.0/cwrapper/projectM.cpp
parent2a39c305cd831d669ff0790bb1e1eaa577595d62 (diff)
downloadusdx-0b5d88d2332b91211ae03a3364397369d155e6ba.tar.gz
usdx-0b5d88d2332b91211ae03a3364397369d155e6ba.tar.xz
usdx-0b5d88d2332b91211ae03a3364397369d155e6ba.zip
- new layout of the projectM lib-dir.
- PROJECTM_..._PLUS variable in config-....inc not needed anymore. - Support for projectM 1.1 (=1.10) git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1030 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'Game/Code/lib/projectM/1.0/cwrapper/projectM.cpp')
-rw-r--r--Game/Code/lib/projectM/1.0/cwrapper/projectM.cpp69
1 files changed, 0 insertions, 69 deletions
diff --git a/Game/Code/lib/projectM/1.0/cwrapper/projectM.cpp b/Game/Code/lib/projectM/1.0/cwrapper/projectM.cpp
deleted file mode 100644
index ff8e2a2f..00000000
--- a/Game/Code/lib/projectM/1.0/cwrapper/projectM.cpp
+++ /dev/null
@@ -1,69 +0,0 @@
-#include "projectM.h"
-
-projectM* projectM_create1(char* config_file)
-{
- return new projectM(config_file);
-}
-
-projectM* projectM_create2(int gx, int gy, int fps, int texsize,
- int width, int height, char* preset_url, char* title_fonturl, char* title_menuurl)
-{
- return new projectM(gx, gy, fps, texsize, width, height,
- preset_url, title_fonturl, title_menuurl);
-}
-
-void projectM_resetGL(projectM* pm, int width, int height)
-{
- pm->projectM_resetGL(width, height);
-}
-
-void projectM_setTitle(projectM* pm, char* title)
-{
- pm->projectM_setTitle(title);
-}
-
-void projectM_renderFrame(projectM* pm)
-{
- pm->renderFrame();
-}
-
-unsigned projectM_initRenderToTexture(projectM* pm)
-{
- return pm->initRenderToTexture();
-}
-
-void projectM_key_handler(projectM* pm, projectMEvent event,
- projectMKeycode keycode, projectMModifier modifier)
-{
- pm->key_handler(event, keycode, modifier);
-}
-
-void projectM_free(projectM* pm)
-{
- delete pm;
-}
-
-void PCM_addPCMfloat(projectM* pm, float *PCMdata, int samples)
-{
- pm->pcm->addPCMfloat(PCMdata, samples);
-}
-
-void PCM_addPCM16(projectM* pm, short pcm_data[2][512])
-{
- pm->pcm->addPCM16(pcm_data);
-}
-
-void PCM_addPCM16Data(projectM* pm, const short* pcm_data, short samples)
-{
- pm->pcm->addPCM16Data(pcm_data, samples);
-}
-
-void PCM_addPCM8(projectM* pm, unsigned char pcm_data[2][1024])
-{
- pm->pcm->addPCM8(pcm_data);
-}
-
-void PCM_addPCM8_512(projectM* pm, const unsigned char pcm_data[2][512])
-{
- pm->pcm->addPCM8_512(pcm_data);
-}