Home
last modified time | relevance | path

Searched refs:EntryPointCommand (Results 1 – 9 of 9) sorted by relevance

/external/deqp-deps/amber/src/
Dcommand.cc65 EntryPointCommand* Command::AsEntryPoint() { in AsEntryPoint()
66 return static_cast<EntryPointCommand*>(this); in AsEntryPoint()
177 EntryPointCommand::EntryPointCommand(Pipeline* pipeline) in EntryPointCommand() function in amber::EntryPointCommand
180 EntryPointCommand::~EntryPointCommand() = default;
Dcommand.h45 class EntryPointCommand; variable
109 EntryPointCommand* AsEntryPoint();
683 class EntryPointCommand : public PipelineCommand {
685 explicit EntryPointCommand(Pipeline* pipeline);
686 ~EntryPointCommand() override;
Dengine.h114 virtual Result DoEntryPoint(const EntryPointCommand* cmd) = 0;
Dexecutor_test.cc141 Result DoEntryPoint(const EntryPointCommand*) override { in DoEntryPoint() argument
681 TEST_F(VkScriptExecutorTest, EntryPointCommand) { in TEST_F() argument
/external/deqp-deps/amber/src/dawn/
Dengine_dawn.h61 Result DoEntryPoint(const EntryPointCommand* cmd) override;
Dengine_dawn.cc1454 Result EngineDawn::DoEntryPoint(const EntryPointCommand*) { in DoEntryPoint() argument
/external/deqp-deps/amber/src/vulkan/
Dengine_vulkan.h60 Result DoEntryPoint(const EntryPointCommand* cmd) override;
Dengine_vulkan.cc634 Result EngineVulkan::DoEntryPoint(const EntryPointCommand* command) { in DoEntryPoint()
/external/deqp-deps/amber/src/vkscript/
Dcommand_parser.cc879 auto cmd = MakeUnique<EntryPointCommand>(pipeline_); in ProcessEntryPoint()