~ubuntu-branches/ubuntu/trusty/blender/trusty

« back to all changes in this revision

Viewing changes to intern/cycles/render/integrator.h

  • Committer: Package Import Robot
  • Author(s): Jeremy Bicha
  • Date: 2013-03-06 12:08:47 UTC
  • mfrom: (1.5.1) (14.1.8 experimental)
  • Revision ID: package-import@ubuntu.com-20130306120847-frjfaryb2zrotwcg
Tags: 2.66a-1ubuntu1
* Resynchronize with Debian (LP: #1076930, #1089256, #1052743, #999024,
  #1122888, #1147084)
* debian/control:
  - Lower build-depends on libavcodec-dev since we're not
    doing the libav9 transition in Ubuntu yet

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
        bool transparent_shadows;
42
42
 
43
43
        bool no_caustics;
 
44
        float filter_glossy;
44
45
 
45
46
        int seed;
46
47
        int layer_flag;
47
48
 
48
49
        float sample_clamp;
 
50
        bool motion_blur;
 
51
 
 
52
        int diffuse_samples;
 
53
        int glossy_samples;
 
54
        int transmission_samples;
 
55
        int ao_samples;
 
56
        int mesh_light_samples;
 
57
 
 
58
        bool progressive;
49
59
 
50
60
        bool need_update;
51
61
 
52
62
        Integrator();
53
63
        ~Integrator();
54
64
 
55
 
        void device_update(Device *device, DeviceScene *dscene);
 
65
        void device_update(Device *device, DeviceScene *dscene, Scene *scene);
56
66
        void device_free(Device *device, DeviceScene *dscene);
57
67
 
58
68
        bool modified(const Integrator& integrator);