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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Genrich <daniel.genrich@gmx.net>2009-07-30 19:03:00 +0400
committerDaniel Genrich <daniel.genrich@gmx.net>2009-07-30 19:03:00 +0400
commitaccc2ab744d1889294eb7a29ce5e642fbea991d5 (patch)
tree9751f223ae4605bb3a5e1913326a71aba69ed414 /intern/smoke
parent58c88bcf7636abce291168af189284181f2f7033 (diff)
smoke: forgot to disable fftw3 noise function
Diffstat (limited to 'intern/smoke')
-rw-r--r--intern/smoke/intern/WTURBULENCE.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/intern/smoke/intern/WTURBULENCE.cpp b/intern/smoke/intern/WTURBULENCE.cpp
index 64cce9e39bc..05e29442383 100644
--- a/intern/smoke/intern/WTURBULENCE.cpp
+++ b/intern/smoke/intern/WTURBULENCE.cpp
@@ -181,8 +181,9 @@ void WTURBULENCE::setNoise(int type)
{
if(type == 4) // FFT
{
- std::string noiseTileFilename = std::string("noise.fft");
- generatTile_FFT(_noiseTile, noiseTileFilename);
+ // needs fft
+ // std::string noiseTileFilename = std::string("noise.fft");
+ // generatTile_FFT(_noiseTile, noiseTileFilename);
}
else if(type == 8) // curl
{