mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-11 16:45:25 +08:00
Correct variable names to camelCase convention
Change-Id: I87c2435d57e50016ab0deb473e30c230424dead7 Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
committed by
sys_ocldev
parent
2213b8808f
commit
820f5ac17b
@@ -52,14 +52,14 @@ struct EnqueueWriteBufferTypeTest : public CommandEnqueueFixture,
|
||||
}
|
||||
|
||||
template <typename FamilyType>
|
||||
void enqueueWriteBuffer(bool Blocking, void *InputData, int size) {
|
||||
void enqueueWriteBuffer(bool blocking, void *inputData, int size) {
|
||||
auto retVal = EnqueueWriteBufferHelper<>::enqueueWriteBuffer(
|
||||
pCmdQ,
|
||||
srcBuffer.get(),
|
||||
Blocking,
|
||||
blocking,
|
||||
0,
|
||||
size,
|
||||
InputData);
|
||||
inputData);
|
||||
EXPECT_EQ(CL_SUCCESS, retVal);
|
||||
}
|
||||
|
||||
|
||||
@@ -29,7 +29,7 @@ struct CommandQueueHwFixture {
|
||||
const cl_command_queue_properties *properties);
|
||||
|
||||
virtual void SetUp();
|
||||
virtual void SetUp(ClDevice *_pDevice, cl_command_queue_properties properties);
|
||||
virtual void SetUp(ClDevice *pDevice, cl_command_queue_properties properties);
|
||||
|
||||
virtual void TearDown();
|
||||
|
||||
|
||||
@@ -348,7 +348,7 @@ struct EnqueueMapBufferHelper {
|
||||
cl_uint numEventsInWaitList = Traits::numEventsInWaitList,
|
||||
const cl_event *eventWaitList = Traits::eventWaitList,
|
||||
cl_event *event = Traits::event,
|
||||
cl_int *errcode_ret = Traits::errcodeRet) {
|
||||
cl_int *errcodeRet = Traits::errcodeRet) {
|
||||
|
||||
size = size == static_cast<size_t>(-1) ? buffer->getSize() : size;
|
||||
|
||||
@@ -364,8 +364,8 @@ struct EnqueueMapBufferHelper {
|
||||
event,
|
||||
retCode);
|
||||
|
||||
if (errcode_ret) {
|
||||
*errcode_ret = retCode;
|
||||
if (errcodeRet) {
|
||||
*errcodeRet = retCode;
|
||||
}
|
||||
return retPtr;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user