Home
last modified time | relevance | path

Searched refs:MovePtr (Results 1 – 25 of 237) sorted by relevance

12345678910

/external/deqp/framework/delibs/decpp/
DdeUniquePtr.hpp125 class MovePtr : public UniqueBase<T, Deleter> class
128 MovePtr (void) : UniqueBase<T, Deleter> (DE_NULL, Deleter()) {} in MovePtr() function in de::details::MovePtr
129 …explicit MovePtr (T* ptr, Deleter deleter = Deleter()) : UniqueBase<T, Deleter> (ptr, deleter) … in MovePtr() function in de::details::MovePtr
130 MovePtr (MovePtr<T, Deleter>& other) : UniqueBase<T, Deleter> (other.releaseData()) {} in MovePtr() function in de::details::MovePtr
132 MovePtr& operator= (MovePtr<T, Deleter>& other);
140 MovePtr (PtrData<T, Deleter> data) : UniqueBase<T, Deleter> (data) {} in MovePtr() function in de::details::MovePtr
141 MovePtr& operator= (PtrData<T, Deleter> data);
148 MovePtr<T, D>& MovePtr<T,D>::operator= (PtrData<T, D> data) in operator =()
155 MovePtr<T, D>& MovePtr<T,D>::operator= (MovePtr<T, D>& other) in operator =()
163 inline T* MovePtr<T,D>::release (void) throw() in release()
[all …]
DdeUniquePtr.cpp66 MovePtr<Object> createObject (bool& exists) in createObject()
129 MovePtr<Object> ptr(new Object(exists)); in UniquePtr_selfTest()
132 MovePtr<Object> ptr2 = ptr; in UniquePtr_selfTest()
145 MovePtr<Object> ptr2 = ptr.move(); in UniquePtr_selfTest()
166 MovePtr<Object> ptr1(new Object(exists1)); in UniquePtr_selfTest()
167 MovePtr<Object> ptr2(new Object(exists2)); in UniquePtr_selfTest()
178 MovePtr<Object> ptr1(new Object(exists)); in UniquePtr_selfTest()
193 MovePtr<Object> ptr1; in UniquePtr_selfTest()
195 MovePtr<Object> ptr2(new Object(exists)); in UniquePtr_selfTest()
/external/deqp/framework/platform/lnx/
DtcuLnxVulkanPlatform.cpp35 using de::MovePtr;
59 VulkanWindowXlib (MovePtr<x11::XlibWindow> window) in VulkanWindowXlib()
77 VulkanDisplayXlib (MovePtr<x11::DisplayBase> display) in VulkanDisplayXlib()
88 …return new VulkanWindowXlib(MovePtr<x11::XlibWindow>(new x11::XlibWindow(*instance, (int)width, (i… in createWindow()
92 MovePtr<x11::DisplayBase> m_display;
102 VulkanWindowXcb (MovePtr<x11::XcbWindow> window) in VulkanWindowXcb()
120 VulkanDisplayXcb (MovePtr<x11::DisplayBase> display) in VulkanDisplayXcb()
131 …return new VulkanWindowXcb(MovePtr<x11::XcbWindow>(new x11::XcbWindow(*instance, (int)width, (int)… in createWindow()
135 MovePtr<x11::DisplayBase> m_display;
143 VulkanWindowWayland (MovePtr<wayland::Window> window) in VulkanWindowWayland()
[all …]
/external/deqp/external/vulkancts/framework/vulkan/
DvkMemUtil.cpp37 using de::MovePtr;
142 SimpleAllocation (Move<VkDeviceMemory> mem, MovePtr<HostPtr> hostPtr);
150 SimpleAllocation::SimpleAllocation (Move<VkDeviceMemory> mem, MovePtr<HostPtr> hostPtr) in SimpleAllocation()
168 MovePtr<Allocation> SimpleAllocator::allocate (const VkMemoryAllocateInfo& allocInfo, VkDeviceSize … in allocate()
173 MovePtr<HostPtr> hostPtr; in allocate()
176 hostPtr = MovePtr<HostPtr>(new HostPtr(m_vk, m_device, *mem, 0u, allocInfo.allocationSize, 0u)); in allocate()
178 return MovePtr<Allocation>(new SimpleAllocation(mem, hostPtr)); in allocate()
181 MovePtr<Allocation> SimpleAllocator::allocate (const VkMemoryRequirements& memReqs, MemoryRequireme… in allocate()
193 MovePtr<HostPtr> hostPtr; in allocate()
198 hostPtr = MovePtr<HostPtr>(new HostPtr(m_vk, m_device, *mem, 0u, allocInfo.allocationSize, 0u)); in allocate()
[all …]
DvkMemUtil.hpp117 …virtual de::MovePtr<Allocation> allocate (const VkMemoryAllocateInfo& allocInfo, VkDeviceSize alig…
118 …virtual de::MovePtr<Allocation> allocate (const VkMemoryRequirements& memRequirements, MemoryRequi…
127 …de::MovePtr<Allocation> allocate (const VkMemoryAllocateInfo& allocInfo, VkDeviceSize alignme…
128 …de::MovePtr<Allocation> allocate (const VkMemoryRequirements& memRequirements, MemoryRequirem…
136 de::MovePtr<Allocation> allocateDedicated (const InstanceInterface& vki, const DeviceInterface& v…
137 de::MovePtr<Allocation> allocateDedicated (const InstanceInterface& vki, const DeviceInterface& v…
/external/deqp/modules/egl/
DteglImageUtil.cpp53 using de::MovePtr;
85 explicit NativeSurface (MovePtr<UniqueSurface> surface, in NativeSurface()
86 MovePtr<T> native) in NativeSurface()
97 MovePtr<ManagedSurface> createSurface (EglTestContext& eglTestCtx, EGLDisplay dpy, EGLConfig config… in createSurface()
111 …return de::newMovePtr<ManagedSurface>(MovePtr<UniqueSurface>(new UniqueSurface(egl, dpy, surface))… in createSurface()
117MovePtr<NativeWindow> window (windowFactory.createWindow(&nativeDisplay, dpy, config, DE_NULL, Wi… in createSurface()
120 …return MovePtr<ManagedSurface>(new NativeWindowSurface(MovePtr<UniqueSurface>(new UniqueSurface(eg… in createSurface()
126MovePtr<NativePixmap> pixmap (pixmapFactory.createPixmap(&nativeDisplay, dpy, config, DE_NULL, wid… in createSurface()
129 …return MovePtr<ManagedSurface>(new NativePixmapSurface(MovePtr<UniqueSurface>(new UniqueSurface(eg… in createSurface()
182 MovePtr<ClientBuffer> createBuffer (const glw::Functions& gl, Texture2D* reference) const;
[all …]
DteglImageUtil.hpp53 ManagedSurface (de::MovePtr<eglu::UniqueSurface> surface) : m_surface(surface) {} in ManagedSurface()
61 de::MovePtr<ManagedSurface> createSurface (EglTestContext& eglTestCtx, eglw::EGLDisplay display, eg…
75 …virtual de::MovePtr<ClientBuffer> createBuffer (const glw::Functions& gl, tcu::Texture2D* referen…
80 de::MovePtr<ImageSource> createTextureImageSource (eglw::EGLenum source, glw::GLenum internalForm…
81 de::MovePtr<ImageSource> createRenderbufferImageSource (glw::GLenum format);
82 de::MovePtr<ImageSource> createUnsupportedImageSource (const std::string& message, glw::GLenum for…
DteglAndroidUtil.cpp44 using de::MovePtr;
54 MovePtr<ImageSource> createAndroidNativeImageSource (GLenum format) in createAndroidNativeImageSource()
106 MovePtr<ClientBuffer> createBuffer (const glw::Functions&, Texture2D*) const;
139 MovePtr<ClientBuffer> AndroidNativeImageSource::createBuffer (const glw::Functions&, Texture2D* ref… in createBuffer()
141 MovePtr<AndroidNativeClientBuffer> buffer (new AndroidNativeClientBuffer(getLibUI(), m_format)); in createBuffer()
160 return MovePtr<ClientBuffer>(buffer); in createBuffer()
172 MovePtr<ImageSource> createAndroidNativeImageSource (GLenum format) in createAndroidNativeImageSource()
176 return MovePtr<ImageSource>(new AndroidNativeImageSource(format)); in createAndroidNativeImageSource()
DteglImageFormatTests.cpp68 using de::MovePtr;
121 …virtual bool invoke (ImageApi& api, MovePtr<UniqueImage>& image, tcu::Texture2D& refImg) const…
178 bool invoke (ImageApi& api, MovePtr<UniqueImage>& image, tcu::Texture2D& ref) const;
179 …virtual bool invokeGLES2 (GLES2ImageApi& api, MovePtr<UniqueImage>& image, tcu::Texture2D& ref…
185 Create (MovePtr<ImageSource> imgSource) : m_imgSource(imgSource) {} in Create()
187 …bool invokeGLES2 (GLES2ImageApi& api, MovePtr<UniqueImage>& image, tcu::Texture2D& ref) con…
200 …class RenderTexture2D : public Render { public: bool invokeGLES2 (GLES2ImageApi& api, MovePtr<U…
201 …ubemap : public Render { public: bool invokeGLES2 (GLES2ImageApi& api, MovePtr<UniqueImage>& ima…
202 …erbuffer : public Render { public: bool invokeGLES2 (GLES2ImageApi& api, MovePtr<UniqueImage>& ima…
203 …class RenderDepthbuffer : public Render { public: bool invokeGLES2 (GLES2ImageApi& api, MovePtr
[all …]
/external/deqp/external/vulkancts/modules/vulkan/synchronization/
DvktSynchronizationOperation.cpp112 …m_vertexBuffer = de::MovePtr<Buffer>(new Buffer(vk, device, allocator, makeBufferCreateInfo(vertex… in VertexGrid()
128 …m_indexBuffer = de::MovePtr<Buffer>(new Buffer(vk, device, allocator, makeBufferCreateInfo(indexBu… in VertexGrid()
154 de::MovePtr<Buffer> m_vertexBuffer;
155 de::MovePtr<Buffer> m_indexBuffer;
572 de::MovePtr<Operation> build (OperationContext& context, Resource& resource) const in build()
574 return de::MovePtr<Operation>(new Implementation(context, resource, m_bufferOp)); in build()
600 …m_hostBuffer = de::MovePtr<Buffer>(new Buffer(vk, device, allocator, makeBufferCreateInfo(m_resour… in Implementation()
650 de::MovePtr<Buffer> m_hostBuffer;
674 de::MovePtr<Operation> build (OperationContext& context, Resource& resource) const in build()
676 return de::MovePtr<Operation>(new Implementation(context, resource, m_mode)); in build()
[all …]
DvktSynchronizationOperation.hpp167 de::MovePtr<vk::Allocation> allocation,
172 de::MovePtr<vk::Allocation> allocation,
187 de::MovePtr<Buffer> m_buffer;
189 de::MovePtr<Image> m_image;
241 virtual de::MovePtr<Operation> build (OperationContext& context, Resource& resource) const = 0;
249 de::MovePtr<OperationSupport> makeOperationSupport (const OperationName opName, const ResourceDescr…
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineImageTests.cpp44 using de::MovePtr;
414 de::MovePtr<tcu::TestCaseGroup> createImageSizeTests (tcu::TestContext& testCtx, AllocationKind all… in createImageSizeTests()
420 de::MovePtr<tcu::TestCaseGroup> imageSizeTests (new tcu::TestCaseGroup(testCtx, "size", "")); in createImageSizeTests()
574 …de::MovePtr<tcu::TestCaseGroup> countGroup(new tcu::TestCaseGroup(testCtx, caseName.str().c_str(),… in createImageCountTests()
575 …de::MovePtr<tcu::TestCaseGroup> sizeTests = createImageSizeTests(testCtx, allocationKind, sampling… in createImageCountTests()
582 de::MovePtr<tcu::TestCaseGroup> createImageFormatTests (tcu::TestContext& testCtx, AllocationKind a… in createImageFormatTests()
720 …de::MovePtr<tcu::TestCaseGroup> imageFormatTests(new tcu::TestCaseGroup(testCtx, "format", "Tests … in createImageFormatTests()
733 de::MovePtr<tcu::TestCaseGroup> formatGroup(new tcu::TestCaseGroup(testCtx, in createImageFormatTests()
744 de::MovePtr<tcu::TestCaseGroup> createImageViewTypeTests (tcu::TestContext& testCtx, AllocationKind… in createImageViewTypeTests()
762 …de::MovePtr<tcu::TestCaseGroup> imageViewTypeTests(new tcu::TestCaseGroup(testCtx, "view_type", ""… in createImageViewTypeTests()
[all …]
DvktPipelineSamplerTests.cpp47 using de::MovePtr;
569 MovePtr<tcu::TestCaseGroup> createSamplerMagFilterTests (tcu::TestContext& testCtx, VkImageViewType… in createSamplerMagFilterTests()
571MovePtr<tcu::TestCaseGroup> samplerMagFilterTests (new tcu::TestCaseGroup(testCtx, "mag_filter", "… in createSamplerMagFilterTests()
580 MovePtr<tcu::TestCaseGroup> createSamplerMinFilterTests (tcu::TestContext& testCtx, VkImageViewType… in createSamplerMinFilterTests()
582MovePtr<tcu::TestCaseGroup> samplerMinFilterTests (new tcu::TestCaseGroup(testCtx, "min_filter", "… in createSamplerMinFilterTests()
591 MovePtr<tcu::TestCaseGroup> createSamplerLodTests (tcu::TestContext& testCtx, VkImageViewType image… in createSamplerLodTests()
614MovePtr<tcu::TestCaseGroup> samplerLodTests (new tcu::TestCaseGroup(testCtx, "lod", "Tests for sam… in createSamplerLodTests()
626 MovePtr<tcu::TestCaseGroup> createSamplerMipmapTests (tcu::TestContext& testCtx, VkImageViewType im… in createSamplerMipmapTests()
628MovePtr<tcu::TestCaseGroup> samplerMipmapTests (new tcu::TestCaseGroup(testCtx, "mipmap", "Tests f… in createSamplerMipmapTests()
631MovePtr<tcu::TestCaseGroup> mipmapNearestTests (new tcu::TestCaseGroup(testCtx, "nearest", "Uses V… in createSamplerMipmapTests()
[all …]
DvktPipelineMakeUtil.cpp36 using de::MovePtr;
282 MovePtr<Allocation> bindImage (const DeviceInterface& vk, const VkDevice device, Allocator& allocat… in bindImage()
284MovePtr<Allocation> alloc = allocator.allocate(getImageMemoryRequirements(vk, device, image), requ… in bindImage()
289 MovePtr<Allocation> bindBuffer (const DeviceInterface& vk, const VkDevice device, Allocator& alloca… in bindBuffer()
291MovePtr<Allocation> alloc(allocator.allocate(getBufferMemoryRequirements(vk, device, buffer), requ… in bindBuffer()
296 MovePtr<Allocation> bindImageDedicated (const InstanceInterface& vki, const DeviceInterface& vkd, c… in bindImageDedicated()
298 MovePtr<Allocation> alloc(allocateDedicated(vki, vkd, physDevice, device, image, requirement)); in bindImageDedicated()
303 MovePtr<Allocation> bindBufferDedicated (const InstanceInterface& vki, const DeviceInterface& vkd, … in bindBufferDedicated()
305 MovePtr<Allocation> alloc(allocateDedicated(vki, vkd, physDevice, device, buffer, requirement)); in bindBufferDedicated()
DvktPipelineImageUtil.hpp73 de::MovePtr<tcu::TextureLevel> readColorAttachment (const vk::DeviceInterface& vk,
118 virtual de::MovePtr<TestTexture> copy (const tcu::TextureFormat) const = 0;
153 virtual de::MovePtr<TestTexture> copy (const tcu::TextureFormat) const;
175 virtual de::MovePtr<TestTexture> copy (const tcu::TextureFormat) const;
196 virtual de::MovePtr<TestTexture> copy (const tcu::TextureFormat) const;
218 virtual de::MovePtr<TestTexture> copy (const tcu::TextureFormat) const;
239 virtual de::MovePtr<TestTexture> copy (const tcu::TextureFormat) const;
261 virtual de::MovePtr<TestTexture> copy (const tcu::TextureFormat) const;
283 virtual de::MovePtr<TestTexture> copy (const tcu::TextureFormat) const;
DvktPipelineImageViewTests.cpp46 using de::MovePtr;
332 static de::MovePtr<tcu::TestCaseGroup> createSubresourceRangeTests(tcu::TestContext& testCtx, VkIma… in createSubresourceRangeTests()
346 …de::MovePtr<tcu::TestCaseGroup> rangeTests (new tcu::TestCaseGroup(testCtx, "subresource_range", "… in createSubresourceRangeTests()
600 static de::MovePtr<tcu::TestCaseGroup> createComponentSwizzleTests (tcu::TestContext& testCtx, VkIm… in createComponentSwizzleTests()
637 …de::MovePtr<tcu::TestCaseGroup> swizzleTests (new tcu::TestCaseGroup(testCtx, "component_swizzl… in createComponentSwizzleTests()
797 …de::MovePtr<tcu::TestCaseGroup> imageTests (new tcu::TestCaseGroup(testCtx, "image_view", "Image… in createImageViewTests()
798 de::MovePtr<tcu::TestCaseGroup> viewTypeTests (new tcu::TestCaseGroup(testCtx, "view_type", "")); in createImageViewTests()
803 …de::MovePtr<tcu::TestCaseGroup> viewTypeGroup (new tcu::TestCaseGroup(testCtx, imageViewTypes[view… in createImageViewTests()
804 …de::MovePtr<tcu::TestCaseGroup> formatTests (new tcu::TestCaseGroup(testCtx, "format", "Uses samp… in createImageViewTests()
817 de::MovePtr<tcu::TestCaseGroup> formatGroup (new tcu::TestCaseGroup(testCtx, in createImageViewTests()
[all …]
DvktPipelineMultisampleTests.cpp253 de::MovePtr<tcu::TextureLevel> render (void);
273 de::MovePtr<Allocation> m_colorImageAlloc;
277 de::MovePtr<Allocation> m_resolveImageAlloc;
281 de::MovePtr<Allocation> m_depthStencilImageAlloc;
291 de::MovePtr<Allocation> m_vertexBufferAlloc;
324 de::MovePtr<MultisampleRenderer> m_multisampleRenderer;
966 m_multisampleRenderer = de::MovePtr<MultisampleRenderer>( in RasterizationSamplesInstance()
972 m_multisampleRenderer = de::MovePtr<MultisampleRenderer>( in RasterizationSamplesInstance()
979 de::MovePtr<tcu::TextureLevel> level(m_multisampleRenderer->render()); in iterate()
1066 de::MovePtr<tcu::TextureLevel> testShadingImage; in iterate()
[all …]
/external/deqp/external/vulkancts/modules/vulkan/api/
DvktApiBufferAndImageAllocationUtil.hpp56 de::MovePtr<Allocation>& memory) const = 0;
68 de::MovePtr<Allocation>& memory) const; // override
80 de::MovePtr<Allocation>& memory) const; // override
92 de::MovePtr<Allocation>& memory) const = 0;
104 de::MovePtr<Allocation>& memory) const; // override
116 de::MovePtr<Allocation>& memory) const; // override
DvktApiFillBufferTests.cpp79 de::MovePtr<tcu::TextureLevel> m_destinationTextureLevel;
80 de::MovePtr<tcu::TextureLevel> m_expectedTextureLevel;
85 de::MovePtr<Allocation> m_destinationBufferAlloc;
130 …m_destinationTextureLevel = de::MovePtr<tcu::TextureLevel>(new tcu::TextureLevel(mapVkFormat(VK_FO… in iterate()
186 …de::MovePtr<tcu::TextureLevel> resultLevel (new tcu::TextureLevel(m_destinationTextureLevel->getAc… in iterate()
245 …m_expectedTextureLevel = de::MovePtr<tcu::TextureLevel>(new tcu::TextureLevel(dst.getFormat(), dst… in generateExpectedResult()
295 …m_destinationTextureLevel = de::MovePtr<tcu::TextureLevel>(new tcu::TextureLevel(mapVkFormat(VK_FO… in iterate()
351 …de::MovePtr<tcu::TextureLevel> resultLevel (new tcu::TextureLevel(m_destinationTextureLevel->getAc… in iterate()
364 …m_expectedTextureLevel = de::MovePtr<tcu::TextureLevel>(new tcu::TextureLevel(dst.getFormat(), dst… in generateExpectedResult()
402 …de::MovePtr<tcu::TestCaseGroup> fillAndUpdateBufferTests (new tcu::TestCaseGroup(testCtx, "fill_… in createFillAndUpdateBufferTests()
/external/deqp/modules/gles31/functional/
Des31fSeparateShaderTests.cpp71 using de::MovePtr;
916 Pipeline (MovePtr<ProgramPipeline> pipeline_, in Pipeline()
917 MovePtr<ProgramWrapper> fullProg_, in Pipeline()
918 MovePtr<ProgramWrapper> vtxProg_, in Pipeline()
919 MovePtr<ProgramWrapper> frgProg_) in Pipeline()
1005 (MovePtr<Pipeline>& pipeOut);
1016 void testPipelineRendering (MovePtr<Pipeline>& pipeOut);
1017 void testCurrentProgPriority (MovePtr<Pipeline>& pipeOut);
1018 void testActiveProgramUniform (MovePtr<Pipeline>& pipeOut);
1019 void testPipelineQueryActive (MovePtr<Pipeline>& pipeOut);
[all …]
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/
DvktShaderRenderReturnTests.cpp138 de::MovePtr<ShaderReturnCase> makeConditionalReturnInFuncCase (tcu::TestContext& context, const std… in makeConditionalReturnInFuncCase()
175 …return de::MovePtr<ShaderReturnCase>(new ShaderReturnCase(context, name, description, isVertex, tm… in makeConditionalReturnInFuncCase()
178 de::MovePtr<ShaderReturnCase> makeOutputWriteReturnCase (tcu::TestContext& context, const std::stri… in makeOutputWriteReturnCase()
230 …return de::MovePtr<ShaderReturnCase>(new ShaderReturnCase(context, name, description, isVertex, tm… in makeOutputWriteReturnCase()
233 de::MovePtr<ShaderReturnCase> makeReturnInLoopCase (tcu::TestContext& context, const std::string& n… in makeReturnInLoopCase()
277 …return de::MovePtr<ShaderReturnCase>(new ShaderReturnCase(context, name, description, isVertex, tm… in makeReturnInLoopCase()
363 …de::MovePtr<ShaderReturnCase> testCase (makeConditionalReturnInFuncCase(m_testCtx, name, descripti… in init()
429 …de::MovePtr<ShaderReturnCase> testCase = (makeOutputWriteReturnCase(m_testCtx, name, desc, inFunc … in init()
444 …de::MovePtr<ShaderReturnCase> testCase (makeReturnInLoopCase(m_testCtx, name, description, isDynam… in init()
DvktShaderRenderIndexingTests.cpp254 static de::MovePtr<ShaderIndexingCase> createVaryingArrayCase (tcu::TestContext& context, in createVaryingArrayCase()
381 …return de::MovePtr<ShaderIndexingCase>(new ShaderIndexingCase(context, caseName, description, true… in createVaryingArrayCase()
384 static de::MovePtr<ShaderIndexingCase> createUniformArrayCase (tcu::TestContext& context, in createUniformArrayCase()
497 …return de::MovePtr<ShaderIndexingCase>(new ShaderIndexingCase(context, caseName, description, isVe… in createUniformArrayCase()
500 static de::MovePtr<ShaderIndexingCase> createTmpArrayCase (tcu::TestContext& context, in createTmpArrayCase()
652 …return de::MovePtr<ShaderIndexingCase>(new ShaderIndexingCase(context, caseName, description, isVe… in createTmpArrayCase()
671 static de::MovePtr<ShaderIndexingCase> createVectorSubscriptCase (tcu::TestContext& context, in createVectorSubscriptCase()
839 …return de::MovePtr<ShaderIndexingCase>(new ShaderIndexingCase(context, caseName, description, isVe… in createVectorSubscriptCase()
876 static de::MovePtr<ShaderIndexingCase> createMatrixSubscriptCase (tcu::TestContext& context, in createMatrixSubscriptCase()
1031 …return de::MovePtr<ShaderIndexingCase>(new ShaderIndexingCase(context, caseName, description, isVe… in createMatrixSubscriptCase()
[all …]
/external/deqp/modules/gles2/functional/
Des2fLifetimeTests.cpp38 using de::MovePtr;
53 MovePtr<Types> m_types;
61 m_types = MovePtr<Types>(new ES2Types(ltCtx)); in init()
/external/deqp/external/vulkancts/modules/vulkan/
DvktTestPackage.cpp106 de::MovePtr<vk::ProgramBinary> binProg; in buildProgram()
111 binProg = de::MovePtr<vk::ProgramBinary>(compileProgram(iter.getProgram(), &buildInfo)); in buildProgram()
119 binProg = de::MovePtr<vk::ProgramBinary>(prebuiltBinRegistry.loadProgram(progId)); in buildProgram()
148 using de::MovePtr;
154 MovePtr<vk::DebugReportRecorder> createDebugReportRecorder (const vk::PlatformInterface& vkp, const… in createDebugReportRecorder()
157 return MovePtr<vk::DebugReportRecorder>(new vk::DebugReportRecorder(vki, instance)); in createDebugReportRecorder()
189 static MovePtr<vk::Library> createLibrary (tcu::TestContext& testCtx) in createLibrary()
191 return MovePtr<vk::Library>(testCtx.getPlatform().getVulkanPlatform().createLibrary()); in createLibrary()
202 : MovePtr<vk::DebugReportRecorder>(DE_NULL)) in TestCaseExecutor()
/external/deqp/external/vulkancts/modules/vulkan/image/
DvktImageTranscodingSupportTests.cpp73 using de::MovePtr;
273 … (std::vector<deUint8>& srcData, std::vector<deUint8>& dstData, de::MovePtr<Image>& outputIma…
286 de::MovePtr<Image> outputImage; in iterate()
298 …scode (std::vector<deUint8>& srcData, std::vector<deUint8>& dstData, de::MovePtr<Image>& outputIma… in transcode()
341 …const MovePtr<Buffer> vertexBuffer = MovePtr<Buffer>(new Buffer(vk, device, allocator, makeB… in transcode()
346 …const MovePtr<Buffer> srcImageBuffer = MovePtr<Buffer>(new Buffer(vk, device, allocator, src… in transcode()
349 …const MovePtr<Image> srcImage (new Image(vk, device, allocator, srcImageCreateInfo, MemoryR… in transcode()
353 …de::MovePtr<Image> dstImage (new Image(vk, device, allocator, dstImageCreateInfo, MemoryRe… in transcode()
357MovePtr<Buffer> dstImageBuffer = MovePtr<Buffer>(new Buffer(vk, device, allocator, dstImag… in transcode()
540 …void transcode (std::vector<deUint8>& srcData, std::vector<deUint8>& dstData, de::MovePtr<…
[all …]

12345678910