2.8x branch added bContext arg in many places, pass eval-context instead since its not simple to reason about what what nested functions do when they can access and change almost anything. Also use const to prevent unexpected modifications. This fixes crash loading files with shadows, since off-screen buffers use a NULL context for rendering.
55 lines
1.7 KiB
C++
55 lines
1.7 KiB
C++
/*
|
|
* ***** BEGIN GPL LICENSE BLOCK *****
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software Foundation,
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*
|
|
* The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
|
|
* All rights reserved.
|
|
*
|
|
* The Original Code is: all of this file.
|
|
*
|
|
* Contributor(s): none yet.
|
|
*
|
|
* ***** END GPL LICENSE BLOCK *****
|
|
*/
|
|
#ifndef __BKE_WORLD_H__
|
|
#define __BKE_WORLD_H__
|
|
|
|
/** \file BKE_world.h
|
|
* \ingroup bke
|
|
* \since March 2001
|
|
* \author nzc
|
|
*/
|
|
|
|
struct Main;
|
|
struct World;
|
|
|
|
void BKE_world_free(struct World *sc);
|
|
void BKE_world_init(struct World *wrld);
|
|
struct World *add_world(struct Main *bmian, const char *name);
|
|
void BKE_world_copy_data(struct Main *bmain, struct World *wrld_dst, const struct World *wrld_src, const int flag);
|
|
struct World *BKE_world_copy(struct Main *bmain, const struct World *wrld);
|
|
struct World *localize_world(struct World *wrld);
|
|
void BKE_world_make_local(struct Main *bmain, struct World *wrld, const bool lib_local);
|
|
|
|
/* Evaluation. */
|
|
|
|
struct EvaluationContext;
|
|
|
|
void BKE_world_eval(const struct EvaluationContext *eval_ctx, struct World *world);
|
|
|
|
#endif
|
|
|