mirror of
https://github.com/bulletphysics/bullet3.git
synced 2026-08-21 18:48:29 +00:00
Apply clang-format-all.sh using the _clang-format file through all the cpp/.h files. make sure not to apply it to certain serialization structures, since some parser expects the * as part of the name, instead of type. This commit contains no other changes aside from adding and applying clang-format-all.sh
19 lines
335 B
C
19 lines
335 B
C
|
|
#ifndef B3_BUFFER_INFO_CL_H
|
|
#define B3_BUFFER_INFO_CL_H
|
|
|
|
#include "b3OpenCLArray.h"
|
|
|
|
struct b3BufferInfoCL
|
|
{
|
|
//b3BufferInfoCL(){}
|
|
|
|
// template<typename T>
|
|
b3BufferInfoCL(cl_mem buff, bool isReadOnly = false) : m_clBuffer(buff), m_isReadOnly(isReadOnly) {}
|
|
|
|
cl_mem m_clBuffer;
|
|
bool m_isReadOnly;
|
|
};
|
|
|
|
#endif //B3_BUFFER_INFO_CL_H
|