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:
authorCampbell Barton <ideasman42@gmail.com>2008-01-01 21:16:10 +0300
committerCampbell Barton <ideasman42@gmail.com>2008-01-01 21:16:10 +0300
commit58bf29e3898292ad9b46b7c0a591c856dde6eacb (patch)
tree0809354b81382141417ecc543cf5e00eece26558 /source/blender/blenkernel/intern/image.c
parent2df4ef711a6dcb2c8874861a181bbc31d0e37f52 (diff)
removed blenderdef.h, BIF_*, BDR_* and BSE_* header files (except for BIF_gl.h and BIF_glutil.h)
Diffstat (limited to 'source/blender/blenkernel/intern/image.c')
-rw-r--r--source/blender/blenkernel/intern/image.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/source/blender/blenkernel/intern/image.c b/source/blender/blenkernel/intern/image.c
index 6b0586ab62c..a79433fcfa1 100644
--- a/source/blender/blenkernel/intern/image.c
+++ b/source/blender/blenkernel/intern/image.c
@@ -72,7 +72,7 @@
#include "BKE_texture.h"
#include "BKE_utildefines.h"
-#include "BIF_editseq.h"
+//XXX #include "BIF_editseq.h"
#include "PIL_time.h"
@@ -81,8 +81,6 @@
/* for stamp drawing to an image */
#include "BMF_Api.h"
-#include "BDR_drawmesh.h"
-
/* max int, to indicate we don't store sequences in ibuf */
#define IMA_NO_INDEX 0x7FEFEFEF
@@ -217,7 +215,7 @@ static void image_free_buffers(Image *ima)
ima->rr= NULL;
}
- free_realtime_image(ima);
+ //XXX free_realtime_image(ima);
ima->ok= IMA_OK;
}
@@ -553,7 +551,7 @@ void free_old_images()
This gives textures a "second chance" to be used before dying.
*/
if(ima->bindcode || ima->repbind) {
- free_realtime_image(ima);
+ //XXX free_realtime_image(ima);
ima->lastused = ctime;
}
/* Otherwise, just kill the buffers */
@@ -893,7 +891,7 @@ static void stampdata(StampData *stamp_data, int do_prefix)
}
if (G.scene->r.stamp & R_STAMP_SEQSTRIP) {
- Sequence *seq = get_forground_frame_seq(G.scene->r.cfra);
+ Sequence *seq; //XXX = get_forground_frame_seq(G.scene->r.cfra);
if (seq) strcpy(text, seq->name+2);
else strcpy(text, "<none>");