~siretart/ubuntu/utopic/blender/libav10

« back to all changes in this revision

Viewing changes to source/blender/blenkernel/BKE_lamp.h

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2014-02-19 11:24:23 UTC
  • mfrom: (14.2.23 sid)
  • Revision ID: package-import@ubuntu.com-20140219112423-rkmaz2m7ha06d4tk
Tags: 2.69-3ubuntu1
* Merge with Debian; remaining changes:
  - Configure without OpenImageIO on armhf, as it is not available on
    Ubuntu.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
extern "C" {
37
37
#endif
38
38
 
 
39
#include "BLI_compiler_attrs.h"
 
40
 
39
41
struct Lamp;
40
42
struct Main;
41
43
struct Scene;
42
44
 
43
 
struct Lamp *BKE_lamp_add(struct Main *bmain, const char *name) WARN_UNUSED;
44
 
struct Lamp *BKE_lamp_copy(struct Lamp *la) WARN_UNUSED;
45
 
struct Lamp *localize_lamp(struct Lamp *la) WARN_UNUSED;
 
45
struct Lamp *BKE_lamp_add(struct Main *bmain, const char *name) ATTR_WARN_UNUSED_RESULT;
 
46
struct Lamp *BKE_lamp_copy(struct Lamp *la) ATTR_WARN_UNUSED_RESULT;
 
47
struct Lamp *localize_lamp(struct Lamp *la) ATTR_WARN_UNUSED_RESULT;
46
48
void BKE_lamp_make_local(struct Lamp *la);
47
49
void BKE_lamp_free(struct Lamp *la);
48
50