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:
authorTon Roosendaal <ton@blender.org>2006-01-28 19:43:00 +0300
committerTon Roosendaal <ton@blender.org>2006-01-28 19:43:00 +0300
commit4270cc96bccfa3a8a7e761d52b582beb51d8a29a (patch)
treeb0178bac5ba66a6991c6a25b5565c92a21357aa5
parentc8b48e70e626a351dc3d02122ea413d0046e98b7 (diff)
Orange: replaced obsolete IMB_rectop() with IMB_rectcpy() in game engine.
-rw-r--r--source/gameengine/Ketsji/BL_Texture.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/source/gameengine/Ketsji/BL_Texture.cpp b/source/gameengine/Ketsji/BL_Texture.cpp
index 2b01d3df560..7cabb65a3ba 100644
--- a/source/gameengine/Ketsji/BL_Texture.cpp
+++ b/source/gameengine/Ketsji/BL_Texture.cpp
@@ -346,18 +346,18 @@ void my_envmap_split_ima(EnvMap *env)
ima->ok= 1;
env->cube[part]= ima;
}
- IMB_rectop(env->cube[0]->ibuf, env->ima->ibuf,
- 0, 0, 0, 0, dx, dx, IMB_rectcpy, 0);
- IMB_rectop(env->cube[1]->ibuf, env->ima->ibuf,
- 0, 0, dx, 0, dx, dx, IMB_rectcpy, 0);
- IMB_rectop(env->cube[2]->ibuf, env->ima->ibuf,
- 0, 0, 2*dx, 0, dx, dx, IMB_rectcpy, 0);
- IMB_rectop(env->cube[3]->ibuf, env->ima->ibuf,
- 0, 0, 0, dx, dx, dx, IMB_rectcpy, 0);
- IMB_rectop(env->cube[4]->ibuf, env->ima->ibuf,
- 0, 0, dx, dx, dx, dx, IMB_rectcpy, 0);
- IMB_rectop(env->cube[5]->ibuf, env->ima->ibuf,
- 0, 0, 2*dx, dx, dx, dx, IMB_rectcpy, 0);
+ IMB_rectcpy(env->cube[0]->ibuf, env->ima->ibuf,
+ 0, 0, 0, 0, dx, dx);
+ IMB_rectcpy(env->cube[1]->ibuf, env->ima->ibuf,
+ 0, 0, dx, 0, dx, dx);
+ IMB_rectcpy(env->cube[2]->ibuf, env->ima->ibuf,
+ 0, 0, 2*dx, 0, dx, dx);
+ IMB_rectcpy(env->cube[3]->ibuf, env->ima->ibuf,
+ 0, 0, 0, dx, dx, dx);
+ IMB_rectcpy(env->cube[4]->ibuf, env->ima->ibuf,
+ 0, 0, dx, dx, dx, dx);
+ IMB_rectcpy(env->cube[5]->ibuf, env->ima->ibuf,
+ 0, 0, 2*dx, dx, dx, dx);
env->ok= 2;
}
}