~siretart/ubuntu/utopic/blender/libav10

« back to all changes in this revision

Viewing changes to source/blender/compositor/nodes/COM_RenderLayersNode.cpp

  • 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:
22
22
 
23
23
#include "COM_RenderLayersNode.h"
24
24
#include "COM_ExecutionSystem.h"
25
 
#include "COM_RenderLayersImageProg.h"
26
 
#include "COM_RenderLayersAlphaProg.h"
27
 
#include "COM_RenderLayersDepthProg.h"
28
 
#include "COM_RenderLayersNormalOperation.h"
29
 
#include "COM_RenderLayersSpeedOperation.h"
30
 
#include "COM_RenderLayersColorOperation.h"
31
 
#include "COM_RenderLayersUVOperation.h"
32
 
#include "COM_RenderLayersMistOperation.h"
33
 
#include "COM_RenderLayersObjectIndexOperation.h"
34
 
#include "COM_RenderLayersDiffuseOperation.h"
35
 
#include "COM_RenderLayersSpecularOperation.h"
36
 
#include "COM_RenderLayersShadowOperation.h"
37
 
#include "COM_RenderLayersAOOperation.h"
38
 
#include "COM_RenderLayersEmitOperation.h"
39
 
#include "COM_RenderLayersReflectionOperation.h"
40
 
#include "COM_RenderLayersRefractionOperation.h"
41
 
#include "COM_RenderLayersEnvironmentOperation.h"
42
 
#include "COM_RenderLayersIndirectOperation.h"
43
 
#include "COM_RenderLayersMaterialIndexOperation.h"
44
 
#include "COM_RenderLayersCyclesOperation.h"
 
25
#include "COM_RenderLayersProg.h"
45
26
#include "COM_TranslateOperation.h"
46
27
#include "COM_RotateOperation.h"
47
28
#include "COM_ScaleOperation.h"
114
95
        testSocketConnection(graph, context, 25, new RenderLayersCyclesOperation(SCE_PASS_TRANSM_DIRECT));
115
96
        testSocketConnection(graph, context, 26, new RenderLayersCyclesOperation(SCE_PASS_TRANSM_INDIRECT));
116
97
        testSocketConnection(graph, context, 27, new RenderLayersCyclesOperation(SCE_PASS_TRANSM_COLOR));
 
98
        testSocketConnection(graph, context, 28, new RenderLayersCyclesOperation(SCE_PASS_SUBSURFACE_DIRECT));
 
99
        testSocketConnection(graph, context, 29, new RenderLayersCyclesOperation(SCE_PASS_SUBSURFACE_INDIRECT));
 
100
        testSocketConnection(graph, context, 30, new RenderLayersCyclesOperation(SCE_PASS_SUBSURFACE_COLOR));
117
101
}