X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=automated-tests%2Fsrc%2Fdali-toolkit%2Fdali-toolkit-test-utils%2Ftest-graphics-controller.h;h=e14499bf12006dd92613d00199b354994f225f02;hb=68ccbab5d60836876403e44fa3f606ff5014756f;hp=81b93d28728cc9a959a9e9d7320907a40d0c95c5;hpb=4685e8e1f8d09c2b9c08a45f899dc936c1a9fcde;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/automated-tests/src/dali-toolkit/dali-toolkit-test-utils/test-graphics-controller.h b/automated-tests/src/dali-toolkit/dali-toolkit-test-utils/test-graphics-controller.h index 81b93d2..e14499b 100644 --- a/automated-tests/src/dali-toolkit/dali-toolkit-test-utils/test-graphics-controller.h +++ b/automated-tests/src/dali-toolkit/dali-toolkit-test-utils/test-graphics-controller.h @@ -2,7 +2,7 @@ #define TEST_GRAPHICS_CONTROLLER_H /* - * Copyright (c) 2022 Samsung Electronics Co., Ltd. + * Copyright (c) 2023 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -18,6 +18,7 @@ */ #include +#include #include "test-gl-abstraction.h" #include "test-gl-context-helper-abstraction.h" #include "test-graphics-command-buffer.h" @@ -207,6 +208,8 @@ public: */ Graphics::UniquePtr CreateBuffer(const Graphics::BufferCreateInfo& bufferCreateInfo, Graphics::UniquePtr&& oldBuffer) override; + void DiscardBuffer(TestGraphicsBuffer* buffer); + /** * @brief Creates new CommandBuffer object * @@ -373,7 +376,63 @@ public: */ bool PipelineEquals(const Graphics::Pipeline& pipeline0, const Graphics::Pipeline& pipeline1) const override; + /** + * @brief Retrieves program parameters + * + * This function can be used to retrieve data from internal implementation + * + * @param[in] program Valid program object + * @param[in] parameterId Integer parameter id + * @param[out] outData Pointer to output memory + * @return True on success + */ + bool GetProgramParameter(Graphics::Program& program, uint32_t parameterId, void* outData) override; + +public: // ResourceId relative API. + /** + * @brief Create Graphics::Texture as resourceId. + * The ownership of Graphics::Texture will be hold on this controller. + * @note If some Graphics::Texture already created before, assert. + * @post DiscardTextureFromResourceId() or ReleaseTextureFromResourceId() should be called when we don't use resourceId texture anymore. + * + * @param[in] resourceId The unique id of resouces. + * @return Pointer of Graphics::Texture, or nullptr if we fail to create. + */ + Graphics::Texture* CreateTextureByResourceId(uint32_t resourceId, const Graphics::TextureCreateInfo& createInfo) override; + + /** + * @brief Discard Graphics::Texture as resourceId. + * + * @param[in] resourceId The unique id of resouces. + */ + void DiscardTextureFromResourceId(uint32_t resourceId) override; + + /** + * @brief Get the Graphics::Texture as resourceId. + * + * @param[in] resourceId The unique id of resouces. + * @return Pointer of Graphics::Texture, or nullptr if there is no valid objects. + */ + Graphics::Texture* GetTextureFromResourceId(uint32_t resourceId) override; + + /** + * @brief Get the ownership of Graphics::Texture as resourceId. + * + * @param[in] resourceId The unique id of resouces. + * @return Pointer of Graphics::Texture. + */ + Graphics::UniquePtr ReleaseTextureFromResourceId(uint32_t resourceId) override; + public: // Test Functions + void SetAutoAttrCreation(bool v) + { + mAutoAttrCreation = v; + } + bool AutoAttrCreation() + { + return mAutoAttrCreation; + } + void SetVertexFormats(Property::Array& vfs) { mVertexFormats = vfs; @@ -384,23 +443,16 @@ public: // Test Functions mCustomUniforms = customUniforms; } + void AddCustomUniformBlock(const TestGraphicsReflection::TestUniformBlockInfo& blockInfo) + { + mCustomUniformBlocks.push_back(blockInfo); + } + void ClearSubmitStack() { mSubmitStack.clear(); } - /** - * @brief Retrieves program parameters - * - * This function can be used to retrieve data from internal implementation - * - * @param[in] program Valid program object - * @param[in] parameterId Integer parameter id - * @param[out] outData Pointer to output memory - * @return True on success - */ - bool GetProgramParameter(Graphics::Program& program, uint32_t parameterId, void* outData) override; - void ProcessCommandBuffer(TestGraphicsCommandBuffer& commandBuffer); void BindPipeline(TestGraphicsPipeline* pipeline); @@ -415,9 +467,9 @@ public: TestGraphicsSyncImplementation mGraphicsSyncImpl; TestGlContextHelperAbstraction mGlContextHelperAbstraction; - bool isDiscardQueueEmptyResult{true}; - bool isDrawOnResumeRequiredResult{true}; - + bool isDiscardQueueEmptyResult{true}; + bool isDrawOnResumeRequiredResult{true}; + bool mAutoAttrCreation{true}; Property::Array mVertexFormats; struct ProgramCache @@ -427,11 +479,16 @@ public: }; std::vector mProgramCache; + std::vector mAllocatedBuffers; + + std::unordered_map> mTextureUploadBindMapper; + struct PipelineCache { }; - std::vector mCustomUniforms; + std::vector mCustomUniforms; + std::vector mCustomUniformBlocks; }; } // namespace Dali