emissive.cpp 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /*
  2. * Adapted from Open Shading Language with this license:
  3. *
  4. * Copyright (c) 2009-2010 Sony Pictures Imageworks Inc., et al.
  5. * All Rights Reserved.
  6. *
  7. * Modifications Copyright 2011, Blender Foundation.
  8. *
  9. * Redistribution and use in source and binary forms, with or without
  10. * modification, are permitted provided that the following conditions are
  11. * met:
  12. * * Redistributions of source code must retain the above copyright
  13. * notice, this list of conditions and the following disclaimer.
  14. * * Redistributions in binary form must reproduce the above copyright
  15. * notice, this list of conditions and the following disclaimer in the
  16. * documentation and/or other materials provided with the distribution.
  17. * * Neither the name of Sony Pictures Imageworks nor the names of its
  18. * contributors may be used to endorse or promote products derived from
  19. * this software without specific prior written permission.
  20. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  21. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  22. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  23. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  24. * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  25. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  26. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  27. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  28. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  29. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  30. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  31. */
  32. #include <OpenImageIO/fmath.h>
  33. #include <OSL/genclosure.h>
  34. #include "kernel/osl/osl_closures.h"
  35. #include "kernel/kernel_compat_cpu.h"
  36. #include "kernel/kernel_types.h"
  37. #include "kernel/closure/alloc.h"
  38. #include "kernel/closure/emissive.h"
  39. CCL_NAMESPACE_BEGIN
  40. using namespace OSL;
  41. /// Variable cone emissive closure
  42. ///
  43. /// This primitive emits in a cone having a configurable
  44. /// penumbra area where the light decays to 0 reaching the
  45. /// outer_angle limit. It can also behave as a lambertian emitter
  46. /// if the provided angles are PI/2, which is the default
  47. ///
  48. class GenericEmissiveClosure : public CClosurePrimitive {
  49. public:
  50. void setup(ShaderData *sd, int /* path_flag */, float3 weight)
  51. {
  52. emission_setup(sd, weight);
  53. }
  54. };
  55. ClosureParam *closure_emission_params()
  56. {
  57. static ClosureParam params[] = {CLOSURE_STRING_KEYPARAM(GenericEmissiveClosure, label, "label"),
  58. CLOSURE_FINISH_PARAM(GenericEmissiveClosure)};
  59. return params;
  60. }
  61. CCLOSURE_PREPARE(closure_emission_prepare, GenericEmissiveClosure)
  62. CCL_NAMESPACE_END