Changeset View
Changeset View
Standalone View
Standalone View
intern/cycles/kernel/osl/osl_shader.cpp
| Show All 10 Lines | |||||
| * distributed under the License is distributed on an "AS IS" BASIS, | * distributed under the License is distributed on an "AS IS" BASIS, | ||||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||||
| * See the License for the specific language governing permissions and | * See the License for the specific language governing permissions and | ||||
| * limitations under the License. | * limitations under the License. | ||||
| */ | */ | ||||
| #include <OSL/oslexec.h> | #include <OSL/oslexec.h> | ||||
| #include "kernel_compat_cpu.h" | #include "kernel/kernel_compat_cpu.h" | ||||
| #include "kernel_montecarlo.h" | #include "kernel/kernel_montecarlo.h" | ||||
| #include "kernel_types.h" | #include "kernel/kernel_types.h" | ||||
| #include "split/kernel_split_data_types.h" | #include "kernel/split/kernel_split_data_types.h" | ||||
| #include "kernel_globals.h" | #include "kernel/kernel_globals.h" | ||||
| #include "geom/geom_object.h" | #include "kernel/geom/geom_object.h" | ||||
| #include "osl_closures.h" | #include "kernel/osl/osl_closures.h" | ||||
| #include "osl_globals.h" | #include "kernel/osl/osl_globals.h" | ||||
| #include "osl_services.h" | #include "kernel/osl/osl_services.h" | ||||
| #include "osl_shader.h" | #include "kernel/osl/osl_shader.h" | ||||
| #include "util_foreach.h" | #include "util/util_foreach.h" | ||||
| #include "attribute.h" | #include "render/attribute.h" | ||||
| CCL_NAMESPACE_BEGIN | CCL_NAMESPACE_BEGIN | ||||
| /* Threads */ | /* Threads */ | ||||
| void OSLShader::thread_init(KernelGlobals *kg, KernelGlobals *kernel_globals, OSLGlobals *osl_globals) | void OSLShader::thread_init(KernelGlobals *kg, KernelGlobals *kernel_globals, OSLGlobals *osl_globals) | ||||
| { | { | ||||
| ▲ Show 20 Lines • Show All 372 Lines • Show Last 20 Lines | |||||