Changeset View
Changeset View
Standalone View
Standalone View
intern/cycles/kernel/svm/svm_convert.h
| Show All 12 Lines | |||||
| * 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. | ||||
| */ | */ | ||||
| CCL_NAMESPACE_BEGIN | CCL_NAMESPACE_BEGIN | ||||
| /* Conversion Nodes */ | /* Conversion Nodes */ | ||||
| ccl_device_noinline void svm_node_convert(ccl_global const KernelGlobals *kg, | ccl_device_noinline void svm_node_convert(KernelGlobals kg, | ||||
| ccl_private ShaderData *sd, | ccl_private ShaderData *sd, | ||||
| ccl_private float *stack, | ccl_private float *stack, | ||||
| uint type, | uint type, | ||||
| uint from, | uint from, | ||||
| uint to) | uint to) | ||||
| { | { | ||||
| switch (type) { | switch (type) { | ||||
| case NODE_CONVERT_FI: { | case NODE_CONVERT_FI: { | ||||
| ▲ Show 20 Lines • Show All 47 Lines • Show Last 20 Lines | |||||