Fix compile due forgot remove BKE_scene_omp_threads_update from patch

This commit is contained in:
Jens Verwiebe 2014-03-31 14:53:30 +02:00
parent 097a3756c0
commit 49ca3fdf16
2 changed files with 0 additions and 6 deletions

View File

@ -138,7 +138,6 @@ int BKE_scene_num_threads(const struct Scene *scene);
int BKE_render_num_threads(const struct RenderData *r);
int BKE_scene_num_omp_threads(const struct Scene *scene);
void BKE_scene_omp_threads_update(const struct Scene *scene);
#ifdef __cplusplus
}
#endif

View File

@ -681,11 +681,6 @@ static char *rna_RenderSettings_path(PointerRNA *UNUSED(ptr))
return BLI_sprintfN("render");
}
static void rna_omp_threads_update(Main *UNUSED(bmain), Scene *scene, PointerRNA *UNUSED(ptr))
{
BKE_scene_omp_threads_update(scene);
}
static int rna_omp_threads_get(PointerRNA *ptr)
{
Scene *scene = (Scene *)ptr->data;