Home
last modified time | relevance | path

Searched refs:bufferOut (Results 1 – 23 of 23) sorted by relevance

/external/angle/src/libANGLE/renderer/d3d/d3d11/
DShaderExecutable11.cpp99 const d3d11::Buffer **bufferOut) in getConstantBuffer() argument
112 *bufferOut = &mConstantBuffer; in getConstantBuffer()
DBuffer11.h59 ID3D11Buffer **bufferOut);
64 ID3D11Buffer **bufferOut);
68 const d3d11::Buffer **bufferOut,
DRenderer11.cpp158 std::vector<GLuint> *bufferOut) in GetLineLoopIndices() argument
164 bufferOut->resize(indexCount); in GetLineLoopIndices()
170 reinterpret_cast<uint8_t *>(bufferOut->data())); in GetLineLoopIndices()
175 reinterpret_cast<uint8_t *>(bufferOut->data())); in GetLineLoopIndices()
180 reinterpret_cast<uint8_t *>(bufferOut->data())); in GetLineLoopIndices()
190 bufferOut->resize(static_cast<size_t>(count) + 1); in GetLineLoopIndices()
196 SetLineLoopIndices(&(*bufferOut)[0], count); in GetLineLoopIndices()
199 CopyLineLoopIndices<GLubyte>(indices, &(*bufferOut)[0], count); in GetLineLoopIndices()
202 CopyLineLoopIndices<GLushort>(indices, &(*bufferOut)[0], count); in GetLineLoopIndices()
205 CopyLineLoopIndices<GLuint>(indices, &(*bufferOut)[0], count); in GetLineLoopIndices()
[all …]
DShaderExecutable11.h61 const d3d11::Buffer **bufferOut);
DBuffer11.cpp219 const d3d11::ShaderResourceView **bufferOut);
242 const d3d11::Buffer **bufferOut);
695 ID3D11Buffer **bufferOut) in getBuffer() argument
699 *bufferOut = storage->getBuffer().get(); in getBuffer()
707 ID3D11Buffer **bufferOut) in getEmulatedIndexedBuffer() argument
717 *bufferOut = nativeBuffer->get(); in getEmulatedIndexedBuffer()
724 const d3d11::Buffer **bufferOut, in getConstantBufferRange() argument
743 *bufferOut = &bufferStorage->getBuffer(); in getConstantBufferRange()
1537 const d3d11::Buffer **bufferOut) in getBuffer() argument
1638 *bufferOut = &mBuffer; in getBuffer()
DRenderer11.h406 angle::MemoryBuffer **bufferOut);
/external/angle/src/libANGLE/renderer/metal/
Dmtl_resources.mm878 BufferRef *bufferOut)
881 return MakeBufferWithSharedMemOpt(context, false, size, data, bufferOut);
888 BufferRef *bufferOut)
890 bufferOut->reset(new Buffer(context, forceUseSharedMem, size, data));
892 if (!(*bufferOut) || !(*bufferOut)->get())
904 BufferRef *bufferOut)
906 bufferOut->reset(new Buffer(context, options, size, data));
908 if (!(*bufferOut) || !(*bufferOut)->get())
Dmtl_resources.h336 BufferRef *bufferOut);
342 BufferRef *bufferOut);
348 BufferRef *bufferOut);
Dmtl_buffer_pool.mm175 BufferRef *bufferOut,
231 if (bufferOut != nullptr)
233 *bufferOut = mBuffer;
Dmtl_buffer_pool.h79 BufferRef *bufferOut = nullptr,
DVertexArrayMtl.mm85 mtl::BufferRef *bufferOut,
92 dynamicBuffer->allocate(contextMtl, amount, &dst, bufferOut, bufferOffsetOut, nullptr));
DContextMtl.mm69 mtl::BufferRef *bufferOut,
78 ANGLE_TRY(pool->allocate(context, numIndices * sizeof(uint32_t), nullptr, bufferOut, &offset,
90 mtl::BufferRef *bufferOut,
95 ANGLE_TRY(pool->allocate(context, indicesToReserve * sizeof(uint32_t), nullptr, bufferOut,
DProgramMtl.mm59 mtl::BufferRef *bufferOut,
64 ANGLE_TRY(dynamicBuffer->allocate(contextMtl, bytesToAllocate, &dst, bufferOut, bufferOffsetOut,
DTextureMtl.mm247 mtl::BufferRef *bufferOut)
263 *bufferOut = stagingBuffer;
/external/OpenCL-CTS/test_conformance/extensions/cl_khr_dx9_media_sharing/
Dtest_create_context.cpp260 std::vector<cl_uchar> bufferOut(frameSize, 0); in context_create() local
261 if (!YUVSurfaceGet(surfaceFormat, surface, bufferOut, width, height)) in context_create()
267 if (!YUVCompare(surfaceFormat, bufferOut, bufferIn, width, height)) in context_create()
Dtest_interop_sync.cpp295 std::vector<cl_uchar> bufferOut(frameSize, 0); in interop_user_sync() local
296 if (!YUVSurfaceGet(surfaceFormat, surface, bufferOut, width, height)) in interop_user_sync()
302 if (!YUVCompare(surfaceFormat, bufferOut, bufferIn, width, height)) in interop_user_sync()
Dtest_functions_kernel.cpp398 std::vector<cl_uchar> bufferOut(frameSize, 0); in kernel_functions() local
399 if (!YUVSurfaceGet(surfaceFormat, surfaceDst, bufferOut, width, in kernel_functions()
406 if (!YUVCompare(surfaceFormat, bufferOut, in kernel_functions()
Dtest_functions_api.cpp638 std::vector<cl_uchar> bufferOut(frameSize, 0); in api_functions() local
639 if (!YUVSurfaceGet(surfaceFormat, surface, bufferOut, width, in api_functions()
646 if (!YUVCompare(surfaceFormat, bufferOut, in api_functions()
/external/swiftshader/tests/VulkanUnitTests/
DComputeTests.cpp207 VkBuffer bufferOut; in test() local
211 &bufferOut)); in test()
255 bufferOut, // buffer in test()
306 device->DestroyBuffer(bufferOut); in test()
/external/angle/src/libANGLE/renderer/vulkan/
Dvk_helpers.h113 VkBuffer *bufferOut,
121 VkBuffer *bufferOut, in allocate() argument
125 return allocateWithAlignment(contextVk, sizeInBytes, mAlignment, ptrOut, bufferOut, in allocate()
598 BufferHelper **bufferOut,
606 BufferHelper **bufferOut,
614 BufferHelper **bufferOut,
1839 BufferHelper **bufferOut,
Dvk_wrapper.h489 Buffer *bufferOut,
1456 Buffer *bufferOut,
1460 ASSERT(bufferOut && !bufferOut->valid());
1463 persistentlyMappedBuffers, memoryTypeIndexOut, &bufferOut->mHandle,
Dvk_helpers.cpp2071 VkBuffer *bufferOut, in allocateWithAlignment() argument
2134 if (bufferOut != nullptr) in allocateWithAlignment()
2136 *bufferOut = mBuffer->getBuffer().getHandle(); in allocateWithAlignment()
3111 BufferHelper **bufferOut, in getIndexBufferForDrawArrays() argument
3121 *bufferOut = mDynamicIndexBuffer.getCurrentBuffer(); in getIndexBufferForDrawArrays()
3145 BufferHelper **bufferOut, in getIndexBufferForElementArrayBuffer() argument
3158 bufferOut, bufferOffsetOut, indexCountOut)); in getIndexBufferForElementArrayBuffer()
3173 *bufferOut = mDynamicIndexBuffer.getCurrentBuffer(); in getIndexBufferForElementArrayBuffer()
3188 access.onBufferTransferWrite(*bufferOut); in getIndexBufferForElementArrayBuffer()
3194 commandBuffer->copyBuffer(sourceBuffer->getBuffer(), (*bufferOut)->getBuffer(), in getIndexBufferForElementArrayBuffer()
[all …]
DVertexArrayVk.cpp86 vk::BufferHelper **bufferOut, in StreamVertexData() argument
93 *bufferOut = dynamicBuffer->getCurrentBuffer(); in StreamVertexData()