Home
last modified time | relevance | path

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

/external/deqp-deps/amber/src/
Dcommand.cc70 EntryPointCommand* Command::AsEntryPoint() { in AsEntryPoint()
71 return static_cast<EntryPointCommand*>(this); in AsEntryPoint()
182 EntryPointCommand::EntryPointCommand(Pipeline* pipeline) in EntryPointCommand() function in amber::EntryPointCommand
185 EntryPointCommand::~EntryPointCommand() = default;
Dcommand.h46 class EntryPointCommand; variable
117 EntryPointCommand* AsEntryPoint();
686 class EntryPointCommand : public PipelineCommand {
688 explicit EntryPointCommand(Pipeline* pipeline);
689 ~EntryPointCommand() override;
Dengine.h110 virtual Result DoEntryPoint(const EntryPointCommand* cmd) = 0;
Dexecutor_test.cc143 Result DoEntryPoint(const EntryPointCommand*) override { in DoEntryPoint() argument
689 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.h67 Result DoEntryPoint(const EntryPointCommand* cmd) override;
Dengine_vulkan.cc861 Result EngineVulkan::DoEntryPoint(const EntryPointCommand* command) { in DoEntryPoint()
/external/deqp-deps/amber/src/vkscript/
Dcommand_parser.cc879 auto cmd = MakeUnique<EntryPointCommand>(pipeline_); in ProcessEntryPoint()