.\" Automatically generated by Pandoc 2.9.2.1 .\" .TH "rtcSetGeometryVertexAttributeTopology" "3" "" "" "Embree Ray Tracing Kernels 4" .hy .SS NAME .IP .nf \f[C] rtcSetGeometryVertexAttributeTopology - binds a vertex attribute to a topology of the geometry \f[R] .fi .SS SYNOPSIS .IP .nf \f[C] #include void rtcSetGeometryVertexAttributeTopology( RTCGeometry geometry, unsigned int vertexAttributeID, unsigned int topologyID ); \f[R] .fi .SS DESCRIPTION .PP The \f[C]rtcSetGeometryVertexAttributeTopology\f[R] function binds a vertex attribute buffer slot (\f[C]vertexAttributeID\f[R] argument) to a topology (\f[C]topologyID\f[R] argument) for the specified subdivision geometry (\f[C]geometry\f[R] argument). Standard vertex buffers are always bound to the default topology (topology 0) and cannot be bound differently. A vertex attribute buffer always uses the topology it is bound to when used in the \f[C]rtcInterpolate\f[R] and \f[C]rtcInterpolateN\f[R] calls. .PP A topology with ID \f[C]i\f[R] consists of a subdivision mode set through \f[C]rtcSetGeometrySubdivisionMode\f[R] and the index buffer bound to the index buffer slot \f[C]i\f[R]. This index buffer can assign indices for each face of the subdivision geometry that are different to the indices of the default topology. These new indices can for example be used to introduce additional borders into the subdivision mesh to map multiple textures onto one subdivision geometry. .SS EXIT STATUS .PP On failure an error code is set that can be queried using \f[C]rtcGetDeviceError\f[R]. .SS SEE ALSO .PP [rtcSetGeometrySubdivisionMode], [rtcInterpolate], [rtcInterpolateN]