Home
last modified time | relevance | path

Searched refs:copyParams (Results 1 – 21 of 21) sorted by relevance

/external/skia/src/gpu/
DGrTextureParamsAdjuster.cpp30 const CopyParams& copyParams) { in copy_on_gpu() argument
39 rtDesc.fWidth = copyParams.fWidth; in copy_on_gpu()
40 rtDesc.fHeight = copyParams.fHeight; in copy_on_gpu()
84 if (copyParams.fFilter != GrTextureParams::kNone_FilterMode && subset && in copy_on_gpu()
85 (subset->width() != copyParams.fWidth || subset->height() != copyParams.fHeight)) { in copy_on_gpu()
93 SkASSERT(copyParams.fFilter != GrTextureParams::kMipMap_FilterMode); in copy_on_gpu()
97 copyParams.fFilter))->unref(); in copy_on_gpu()
99 GrTextureParams params(SkShader::kClamp_TileMode, copyParams.fFilter); in copy_on_gpu()
137 GrTexture* GrTextureAdjuster::refCopy(const CopyParams& copyParams) { in refCopy() argument
142 this->makeCopyKey(copyParams, &key); in refCopy()
[all …]
DGrTextureParamsAdjuster.h83 const CopyParams& copyParams, in MakeCopyKeyFromOrigKey() argument
89 builder[0] = copyParams.fFilter; in MakeCopyKeyFromOrigKey()
90 builder[1] = copyParams.fWidth; in MakeCopyKeyFromOrigKey()
91 builder[2] = copyParams.fHeight; in MakeCopyKeyFromOrigKey()
156 GrTexture* refCopy(const CopyParams &copyParams);
DGrGpu.cpp59 GrTextureProducer::CopyParams* copyParams) const { in makeCopyForTextureParams()
63 copyParams->fWidth = GrNextPow2(width); in makeCopyForTextureParams()
64 copyParams->fHeight = GrNextPow2(height); in makeCopyForTextureParams()
67 copyParams->fFilter = GrTextureParams::kNone_FilterMode; in makeCopyForTextureParams()
72 copyParams->fFilter = GrTextureParams::kBilerp_FilterMode; in makeCopyForTextureParams()
DGrImageIDTextureAdjuster.cpp102 void GrBitmapTextureMaker::makeCopyKey(const CopyParams& copyParams, GrUniqueKey* copyKey) { in makeCopyKey() argument
104 MakeCopyKeyFromOrigKey(fOriginalKey, copyParams, copyKey); in makeCopyKey()
DGrGpu.h453 GrTextureProducer::CopyParams* copyParams) const { in makeCopyForTextureParams() argument
455 copyParams)) { in makeCopyForTextureParams()
458 return this->onMakeCopyForTextureParams(texture, params, copyParams); in makeCopyForTextureParams()
DGrImageIDTextureAdjuster.h60 void makeCopyKey(const CopyParams& copyParams, GrUniqueKey* copyKey) override;
/external/apache-http/src/org/apache/http/params/
DBasicHttpParams.java137 copyParams(clone); in copy()
143 copyParams(clone); in clone()
153 protected void copyParams(HttpParams target) { in copyParams() method in BasicHttpParams
/external/deqp/external/vulkancts/framework/vulkan/
DvkBuilderUtil.cpp205 const VkCopyDescriptorSet copyParams = in copy() local
217 m_copies.push_back(copyParams); in copy()
/external/deqp/external/vulkancts/modules/vulkan/compute/
DvktComputeTestsUtil.cpp77 const VkBufferImageCopy copyParams = in makeBufferImageCopy() local
86 return copyParams; in makeBufferImageCopy()
DvktComputeBasicComputeShaderTests.cpp780 const VkBufferImageCopy copyParams = makeBufferImageCopy(m_imageSize); in iterate() local
796 …ToImage(*cmdBuffer, *stagingBuffer, *image, VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL, 1u, &copyParams); in iterate()
990 const VkBufferImageCopy copyParams = makeBufferImageCopy(m_imageSize); in iterate() local
1009 …ToBuffer(*cmdBuffer, *image, VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL, *outputBuffer, 1u, &copyParams); in iterate()
2082 const VkBufferImageCopy copyParams = makeBufferImageCopy(m_imageSize); in iterate() local
2100 …ToBuffer(*cmdBuffer, *image, VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL, *outputBuffer, 1u, &copyParams); in iterate()
/external/deqp/external/vulkancts/modules/vulkan/api/
DvktApiSmokeTests.cpp820 const VkBufferImageCopy copyParams = in renderTriangleTest() local
838 …ToBuffer(*cmdBuf, *image, VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL, *readImageBuffer, 1u, &copyParams); in renderTriangleTest()
1437 const VkBufferImageCopy copyParams = in renderTriangleUnusedResolveAttachmentTest() local
1455 …ToBuffer(*cmdBuf, *image, VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL, *readImageBuffer, 1u, &copyParams); in renderTriangleUnusedResolveAttachmentTest()
/external/deqp/external/vulkancts/modules/vulkan/image/
DvktImageTestsUtil.cpp213 const VkBufferImageCopy copyParams = in makeBufferImageCopy() local
222 return copyParams; in makeBufferImageCopy()
DvktImageQualifiersTests.cpp588 …const VkBufferImageCopy copyParams = makeBufferImageCopy(makeExtent3D(getLayerSize(m_imageType, m_… in commandsAfterCompute() local
589 …cmdBuffer, m_image->get(), VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL, m_buffer->get(), 1u, &copyParams); in commandsAfterCompute()
/external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
DvktSparseResourcesTestsUtil.cpp260 const VkBufferImageCopy copyParams = in makeBufferImageCopy() local
269 return copyParams; in makeBufferImageCopy()
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineEarlyFragmentTests.cpp660 const VkBufferImageCopy copyParams = in makeBufferImageCopy() local
669 return copyParams; in makeBufferImageCopy()
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/
DvktShaderRender.cpp1658 const VkBufferImageCopy copyParams = in render() local
1721 …cmdBuffer, *m_colorImage, VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL, *readImageBuffer, 1u, &copyParams); in render()
/external/skia/src/gpu/gl/
DGrGLGpu.cpp4005 GrTextureProducer::CopyParams* copyParams) const { in onMakeCopyForTextureParams()
4011 copyParams->fFilter = GrTextureParams::kNone_FilterMode; in onMakeCopyForTextureParams()
4012 copyParams->fWidth = texture->width(); in onMakeCopyForTextureParams()
4013 copyParams->fHeight = texture->height(); in onMakeCopyForTextureParams()
/external/deqp/external/vulkancts/modules/vulkan/
DvktShaderLibrary.cpp1587 const vk::VkBufferImageCopy copyParams = in ShaderCaseInstance() local
1602 …Buffer, *m_rtImage, vk::VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL, *m_readImageBuffer, 1u, &copyParams); in ShaderCaseInstance()
/external/deqp/external/vulkancts/modules/vulkan/ubo/
DvktUniformBlockCase.cpp1539 const vk::VkBufferImageCopy copyParams = in iterate() local
1554 …dBuffer, *colorImage, vk::VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL, *readImageBuffer, 1u, &copyParams); in iterate()
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
DvktShaderExecutor.cpp1348 const VkBufferImageCopy copyParams = in execute() local
1402 …n + locNdx].get()->get(), VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL, *readImageBuffer, 1u, &copyParams); in execute()
/external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
DvktSpvAsmInstructionTests.cpp5216 const VkBufferImageCopy copyParams = in runAndVerifyDefaultPipeline() local
5230 …ToBuffer(*cmdBuf, *image, VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL, *readImageBuffer, 1u, &copyParams); in runAndVerifyDefaultPipeline()