Home
last modified time | relevance | path

Searched refs:finalSize (Results 1 – 8 of 8) sorted by relevance

/third_party/skia/src/gpu/
DGrSurface.cpp45 size_t finalSize = colorSamplesPerPixel * colorSize; in ComputeSize() local
50 finalSize += colorSize/3; in ComputeSize()
52 return finalSize; in ComputeSize()
DSurfaceContext.cpp1116 SkISize finalSize = dstRect.size(); in rescaleInto() local
1117 if (finalSize == srcRect.size()) { in rescaleInto()
1162 SkISize nextDims = finalSize; in rescaleInto()
1164 if (srcRect.width() > finalSize.width()) { in rescaleInto()
1165 nextDims.fWidth = std::max((srcRect.width() + 1)/2, finalSize.width()); in rescaleInto()
1166 } else if (srcRect.width() < finalSize.width()) { in rescaleInto()
1167 nextDims.fWidth = std::min(srcRect.width()*2, finalSize.width()); in rescaleInto()
1169 if (srcRect.height() > finalSize.height()) { in rescaleInto()
1170 nextDims.fHeight = std::max((srcRect.height() + 1)/2, finalSize.height()); in rescaleInto()
1171 } else if (srcRect.height() < finalSize.height()) { in rescaleInto()
[all …]
/third_party/flutter/skia/src/gpu/
DGrSurface.cpp77 size_t finalSize = colorSamplesPerPixel * colorSize; in ComputeSize() local
82 finalSize += colorSize/3; in ComputeSize()
84 return finalSize; in ComputeSize()
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/
Dvertexconversion.h156 static const std::size_t finalSize = WidenRule::finalWidth * sizeof(OutputType);
Dformatutils9.cpp772 Converter<type, norm, size, preferred>::finalSize, \
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/
Dvertexconversion.h156 static const std::size_t finalSize = WidenRule::finalWidth * sizeof(OutputType);
Dformatutils9.cpp596 Converter<type, norm, size, preferred>::finalSize, \
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/
DvkPlatform.cpp810 VkDeviceSize finalSize = de::max( commandSize, m_commandDefaultSize ); in increaseCommandBufferSize() local
811 m_resourceInterface->increaseCommandBufferSize(commandBuffer, finalSize); in increaseCommandBufferSize()