OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:indexAlloc
(Results
1 - 3
of
3
) sorted by null
/external/deqp/external/vulkancts/modules/vulkan/draw/
vktBasicDrawTests.cpp
782
de::MovePtr<vk::Allocation>
indexAlloc
;
784
indexAlloc
= allocator.allocate(getBufferMemoryRequirements(vk, vkDevice, *indexBuffer), vk::MemoryRequirement::HostVisible);
785
VK_CHECK(vk.bindBufferMemory(vkDevice, *indexBuffer,
indexAlloc
->getMemory(),
indexAlloc
->getOffset()));
787
deMemcpy(
indexAlloc
->getHostPtr(), &(m_data.indexes[0]), bufferSize);
789
vk::flushMappedMemoryRange(m_vk, vkDevice,
indexAlloc
->getMemory(),
indexAlloc
->getOffset(), bufferSize);
[
all
...]
/frameworks/rs/
rsMesh.cpp
141
Allocation *
indexAlloc
= Allocation::createFromStream(rsc, stream);
142
indexBuffers[pCount].set(
indexAlloc
);
rsFont.cpp
583
Allocation *
indexAlloc
= Allocation::createAllocation(mRSC, indexType.get(),
586
uint16_t *indexPtr = (uint16_t*)mRSC->mHal.funcs.allocation.lock1D(mRSC,
indexAlloc
);
602
indexAlloc
->sendDirty(mRSC);
619
mMesh->setPrimitive(
indexAlloc
, RS_PRIMITIVE_TRIANGLE, 0);
621
mRSC->mHal.funcs.allocation.unlock1D(mRSC,
indexAlloc
);
Completed in 206 milliseconds