Blender渲染
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
281 B

  1. <?php
  2. namespace Blobt\Luxcore\scene;
  3. include dirname(dirname(__FILE__)) . "/vendor/autoload.php";
  4. $opencl = new OpenCL();
  5. $opencl->useGpu();
  6. echo $opencl;
  7. $pathDepth = new PathDepth([
  8. "total" => 12
  9. ]);
  10. $depth = new Path([
  11. "pathdepth" => $pathDepth
  12. ]);
  13. echo $depth;