Searched refs:loadFunction (Results 1 – 7 of 7) sorted by relevance
/device/generic/vulkan-cereal/third-party/angle/src/libANGLE/renderer/d3d/d3d11/ |
D | Image11.cpp | 293 LoadImageFunction loadFunction = d3dFormatInfo.getLoadFunctions()(type).loadFunction; in loadData() local 301 loadFunction(area.width, area.height, area.depth, in loadData() 334 LoadImageFunction loadFunction = in loadCompressedData() local 335 d3dFormatInfo.getLoadFunctions()(GL_UNSIGNED_BYTE).loadFunction; in loadCompressedData() 345 loadFunction(area.width, area.height, area.depth, static_cast<const uint8_t *>(input), in loadCompressedData() 414 auto loadFunction = destD3D11Format.getLoadFunctions()(destFormatInfo.type); in copyFromFramebuffer() local 416 if (loadFunction.requiresConversion) in copyFromFramebuffer() 431 loadFunction.loadFunction(sourceArea.width, sourceArea.height, 1, memoryBuffer->data(), in copyFromFramebuffer()
|
D | TextureStorage11.cpp | 799 loadFunctionInfo.loadFunction(width, height, depth, pixelData + srcSkipBytes, srcRowPitch, in setData()
|
/device/generic/vulkan-cereal/third-party/angle/src/libANGLE/renderer/ |
D | renderer_utils.h | 149 LoadImageFunctionInfo() : loadFunction(nullptr), requiresConversion(false) {} in LoadImageFunctionInfo() 150 LoadImageFunctionInfo(LoadImageFunction loadFunction, bool requiresConversion) in LoadImageFunctionInfo() 151 : loadFunction(loadFunction), requiresConversion(requiresConversion) in LoadImageFunctionInfo() 154 LoadImageFunction loadFunction; member
|
/device/generic/vulkan-cereal/third-party/angle/src/libANGLE/renderer/d3d/d3d9/ |
D | formatutils9.cpp | 256 loadFunction(UnreachableLoad) in TextureFormat() 263 LoadImageFunction loadFunction) in InsertD3D9FormatInfo() argument 276 info.loadFunction = loadFunction; in InsertD3D9FormatInfo()
|
D | Image9.cpp | 496 ASSERT(d3dFormatInfo.loadFunction != nullptr); in loadData() 503 d3dFormatInfo.loadFunction(area.width, area.height, area.depth, in loadData() 535 ASSERT(d3d9FormatInfo.loadFunction != nullptr); in loadCompressedData() 542 d3d9FormatInfo.loadFunction(area.width, area.height, area.depth, in loadCompressedData()
|
D | formatutils9.h | 87 LoadImageFunction loadFunction; member
|
/device/generic/vulkan-cereal/third-party/angle/src/libANGLE/renderer/vulkan/ |
D | vk_helpers.cpp | 3342 loadFunctionInfo.loadFunction = angle::LoadD32ToD32F; in stageSubresourceUpdateImpl() 3347 loadFunctionInfo.loadFunction = angle::LoadD32FS8X24ToD32F; in stageSubresourceUpdateImpl() 3351 loadFunctionInfo.loadFunction = angle::LoadD24S8ToD32F; in stageSubresourceUpdateImpl() 3390 loadFunctionInfo.loadFunction(glExtents.width, glExtents.height, glExtents.depth, source, in stageSubresourceUpdateImpl() 3637 LoadImageFunctionInfo loadFunction = vkFormat.textureLoadFunctions(formatInfo.type); in stageSubresourceUpdateFromFramebuffer() local 3660 if (loadFunction.requiresConversion) in stageSubresourceUpdateFromFramebuffer() 3675 loadFunction.loadFunction(clippedRectangle.width, clippedRectangle.height, 1, in stageSubresourceUpdateFromFramebuffer()
|