aboutsummaryrefslogtreecommitdiff
path: root/visualisations/xbmc_vis.h
diff options
context:
space:
mode:
authorwiso <wiso@svn>2009-10-19 17:34:43 +0000
committerwiso <wiso@svn>2009-10-19 17:34:43 +0000
commitd9e1ea154953fe5e4acc95008721973517059981 (patch)
tree64896287b7d2d62a70cabd9b67f5b8a7e37d5b21 /visualisations/xbmc_vis.h
parent6dee06009e268c7445699ab445c2bb02b39eb981 (diff)
[WIN32DX] removed the visualization allocate/free stuff since it's now completely reloaded on window resize.
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@23854 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'visualisations/xbmc_vis.h')
-rw-r--r--visualisations/xbmc_vis.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/visualisations/xbmc_vis.h b/visualisations/xbmc_vis.h
index cee317860e..db5c16de06 100644
--- a/visualisations/xbmc_vis.h
+++ b/visualisations/xbmc_vis.h
@@ -86,10 +86,6 @@ extern "C"
void UpdateSetting(int num, StructSetting*** sSet);
void GetPresets(char ***pPresets, int *currentPreset, int *numPresets, bool *locked);
int GetSubModules(char ***names, char ***paths);
-#ifdef HAS_DX
- void FreeDXResources();
- void AllocateDXResources();
-#endif
// function to export the above structure to XBMC
void __declspec(dllexport) get_module(struct Visualisation* pVisz)
@@ -106,10 +102,6 @@ extern "C"
pVisz->GetPresets = GetPresets;
pVisz->GetSubModules = GetSubModules;
pVisz->FreeSettings = FreeSettings;
-#ifdef HAS_DX
- pVisz->FreeDXResources = FreeDXResources;
- pVisz->AllocateDXResources = AllocateDXResources;
-#endif
};
};