Home
last modified time | relevance | path

Searched refs:ClearDepthCommand (Results 1 – 10 of 10) sorted by relevance

/external/deqp-deps/amber/src/
Dcommand.cc33 ClearDepthCommand* Command::AsClearDepth() { in AsClearDepth()
34 return static_cast<ClearDepthCommand*>(this); in AsClearDepth()
162 ClearDepthCommand::ClearDepthCommand(Pipeline* pipeline) in ClearDepthCommand() function in amber::ClearDepthCommand
165 ClearDepthCommand::~ClearDepthCommand() = default;
Dcommand.h37 class ClearDepthCommand; variable
101 ClearDepthCommand* AsClearDepth();
624 class ClearDepthCommand : public PipelineCommand {
626 explicit ClearDepthCommand(Pipeline* pipeline);
627 ~ClearDepthCommand() override;
Dengine.h96 virtual Result DoClearDepth(const ClearDepthCommand* cmd) = 0;
Dexecutor_test.cc82 Result DoClearDepth(const ClearDepthCommand*) override { in DoClearDepth() argument
476 TEST_F(VkScriptExecutorTest, ClearDepthCommand) { in TEST_F() argument
/external/deqp-deps/amber/src/dawn/
Dengine_dawn.h55 Result DoClearDepth(const ClearDepthCommand* cmd) override;
Dengine_dawn.cc883 Result EngineDawn::DoClearDepth(const ClearDepthCommand* command) { in DoClearDepth()
/external/deqp-deps/amber/src/vulkan/
Dengine_vulkan.h54 Result DoClearDepth(const ClearDepthCommand* cmd) override;
Dengine_vulkan.cc443 Result EngineVulkan::DoClearDepth(const ClearDepthCommand* command) { in DoClearDepth()
/external/deqp-deps/amber/src/vkscript/
Dcommand_parser.cc417 cmd = MakeUnique<ClearDepthCommand>(pipeline_); in ProcessClear()
/external/deqp-deps/amber/src/amberscript/
Dparser.cc3346 auto cmd = MakeUnique<ClearDepthCommand>(pipeline); in ParseClearDepth()