Home
last modified time | relevance | path

Searched refs:GraphicsPipelineDesc (Results 1 – 11 of 11) sorted by relevance

/external/angle/src/tests/perf_tests/
DVulkanPipelineCachePerf.cpp33 std::vector<vk::GraphicsPipelineDesc> mCacheHits;
34 std::vector<vk::GraphicsPipelineDesc> mCacheMisses;
38 void randomizeDesc(vk::GraphicsPipelineDesc *desc);
56 vk::GraphicsPipelineDesc desc; in SetUp()
68 vk::GraphicsPipelineDesc desc; in SetUp()
74 void VulkanPipelineCachePerfTest::randomizeDesc(vk::GraphicsPipelineDesc *desc) in randomizeDesc()
76 std::vector<uint8_t> bytes(sizeof(vk::GraphicsPipelineDesc)); in randomizeDesc()
78 memcpy(desc, bytes.data(), sizeof(vk::GraphicsPipelineDesc)); in randomizeDesc()
87 const vk::GraphicsPipelineDesc *desc = nullptr; in step()
/external/angle/src/libANGLE/renderer/vulkan/
Dvk_cache_utils.cpp1369 ((offsetof(GraphicsPipelineDesc, Member) + offsetof(decltype(Member), Field)) >> \
1536 void *GraphicsPipelineDesc::operator new(std::size_t size) in operator new()
1541 void GraphicsPipelineDesc::operator delete(void *ptr) in operator delete()
1546 GraphicsPipelineDesc::GraphicsPipelineDesc() in GraphicsPipelineDesc() function in rx::vk::GraphicsPipelineDesc
1548 memset(this, 0, sizeof(GraphicsPipelineDesc)); in GraphicsPipelineDesc()
1551 GraphicsPipelineDesc::~GraphicsPipelineDesc() = default;
1553 GraphicsPipelineDesc::GraphicsPipelineDesc(const GraphicsPipelineDesc &other) in GraphicsPipelineDesc() function in rx::vk::GraphicsPipelineDesc
1555 memcpy(this, &other, sizeof(GraphicsPipelineDesc)); in GraphicsPipelineDesc()
1558 GraphicsPipelineDesc &GraphicsPipelineDesc::operator=(const GraphicsPipelineDesc &other) in operator =()
1560 memcpy(this, &other, sizeof(GraphicsPipelineDesc)); in operator =()
[all …]
Dvk_cache_utils.h547 class GraphicsPipelineDesc final
554 GraphicsPipelineDesc();
555 ~GraphicsPipelineDesc();
556 GraphicsPipelineDesc(const GraphicsPipelineDesc &other);
557 GraphicsPipelineDesc &operator=(const GraphicsPipelineDesc &other);
560 bool operator==(const GraphicsPipelineDesc &other) const;
729 constexpr size_t kGraphicsPipelineDescSize = sizeof(GraphicsPipelineDesc);
920 const GraphicsPipelineDesc *desc,
924 const GraphicsPipelineDesc *desc;
935 const GraphicsPipelineDesc *desc, in GraphicsPipelineTransition()
[all …]
DProgramExecutableVk.h148 const vk::GraphicsPipelineDesc &desc,
150 const vk::GraphicsPipelineDesc **descPtrOut,
DUtilsVk.cpp403 void SetStencilForShaderExport(ContextVk *contextVk, vk::GraphicsPipelineDesc *desc) in SetStencilForShaderExport()
1444 const vk::GraphicsPipelineDesc *pipelineDesc, in setupProgram()
1486 const vk::GraphicsPipelineDesc *descPtr; in setupProgram()
2021 vk::GraphicsPipelineDesc pipelineDesc; in clearFramebuffer()
2279 vk::GraphicsPipelineDesc pipelineDesc; in blitResolveImpl()
2725 vk::GraphicsPipelineDesc pipelineDesc; in copyImage()
3185 vk::GraphicsPipelineDesc pipelineDesc; in unresolve()
DUtilsVk.h477 const vk::GraphicsPipelineDesc *pipelineDesc,
DProgramExecutableVk.cpp816 const vk::GraphicsPipelineDesc &desc, in getGraphicsPipeline()
818 const vk::GraphicsPipelineDesc **descPtrOut, in getGraphicsPipeline()
Dvk_helpers.h2501 const GraphicsPipelineDesc &pipelineDesc, in getGraphicsPipeline()
2504 const GraphicsPipelineDesc **descPtrOut, in getGraphicsPipeline()
DContextVk.h986 std::unique_ptr<vk::GraphicsPipelineDesc> mGraphicsPipelineDesc;
DContextVk.cpp731 mGraphicsPipelineDesc.reset(new vk::GraphicsPipelineDesc()); in initialize()
1391 const vk::GraphicsPipelineDesc *descPtr; in handleDirtyGraphicsPipelineDesc()
1412 const vk::GraphicsPipelineDesc *descPtr; in handleDirtyGraphicsPipelineDesc()
/external/angle/src/libANGLE/renderer/vulkan/doc/
DFastOpenGLStateTransitions.md21 [GraphicsPipelineDesc][GraphicsPipelineDesc] class is a tightly packed 256-byte description of the
31 recorded into a compact bit mask that covers the GraphicsPipelineDesc state vector. Then on the next
32 draw call we scan the transition bit mask and compare the GraphicsPipelineDesc of the current state
52 [GraphicsPipelineDesc]: https://chromium.googlesource.com/angle/angle/+/225f08bf85a368f905362cdd136…