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:
Diffstat (limited to 'source/blender/blenkernel/intern/displist.c')
-rw-r--r--source/blender/blenkernel/intern/displist.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/source/blender/blenkernel/intern/displist.c b/source/blender/blenkernel/intern/displist.c
index 9273bd8eb71..b143def9f32 100644
--- a/source/blender/blenkernel/intern/displist.c
+++ b/source/blender/blenkernel/intern/displist.c
@@ -726,15 +726,6 @@ static void init_fastshade_for_ob(Object *ob, int *need_orco_r, float mat[4][4],
}
}
}
-static void end_fastshade_for_ob(Object *ob)
-{
- int a;
-
- for(a=0; a<ob->totcol; a++) {
- Material *ma= give_current_material(ob, a+1);
- if(ma) end_render_material(ma);
- }
-}
void mesh_create_shadedColors(Object *ob, int onlyForMesh, unsigned int **col1_r, unsigned int **col2_r)
{
@@ -846,7 +837,6 @@ void mesh_create_shadedColors(Object *ob, int onlyForMesh, unsigned int **col1_r
if (dmNeedsFree) dm->release(dm);
- end_fastshade_for_ob(ob);
}
void shadeDispList(Object *ob)
@@ -986,8 +976,6 @@ void shadeDispList(Object *ob)
dl= dl->next;
}
}
-
- end_fastshade_for_ob(ob);
}
void reshadeall_displist(void)
@@ -1999,8 +1987,6 @@ void imagestodisplist(void)
base= base->next;
}
- end_render_textures();
-
allqueue(REDRAWVIEW3D, 0);
}