rtcCommitGeometry.3embree3 820 B

1234567891011121314151617181920212223242526272829303132
  1. .TH "rtcCommitGeometry" "3" "" "" "Embree Ray Tracing Kernels 3"
  2. .SS NAME
  3. .IP
  4. .nf
  5. \f[C]
  6. rtcCommitGeometry\ \-\ commits\ geometry\ changes
  7. \f[]
  8. .fi
  9. .SS SYNOPSIS
  10. .IP
  11. .nf
  12. \f[C]
  13. #include\ <embree3/rtcore.h>
  14. void\ rtcCommitGeometry(RTCGeometry\ geometry);
  15. \f[]
  16. .fi
  17. .SS DESCRIPTION
  18. .PP
  19. The \f[C]rtcCommitGeometry\f[] function is used to commit all geometry
  20. changes performed to a geometry (\f[C]geometry\f[] parameter).
  21. After a geometry gets modified, this function must be called to properly
  22. update the internal state of the geometry to perform interpolations
  23. using \f[C]rtcInterpolate\f[] or to commit a scene containing the
  24. geometry using \f[C]rtcCommitScene\f[].
  25. .SS EXIT STATUS
  26. .PP
  27. On failure an error code is set that can be queried using
  28. \f[C]rtcGetDeviceError\f[].
  29. .SS SEE ALSO
  30. .PP
  31. [rtcInterpolate], [rtcCommitScene]