! returns pointer to first element */
| 163 | |
| 164 | /*! returns pointer to first element */ |
| 165 | __forceinline virtual char* getDevicePtr() const { |
| 166 | #if defined(EMBREE_SYCL_SUPPORT) |
| 167 | return dptr; |
| 168 | #else |
| 169 | return ptr; |
| 170 | #endif |
| 171 | } |
| 172 | |
| 173 | /*! returns the number of bytes of the buffer */ |
| 174 | __forceinline size_t bytes() const { |
no outgoing calls
no test coverage detected