mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 06:18:52 +02:00
Re-name baker::ImportContext to baker::BakeContext
This commit is contained in:
parent
9e63caa84a
commit
c41174a823
2 changed files with 4 additions and 4 deletions
|
@ -26,7 +26,7 @@ namespace baker {
|
||||||
};
|
};
|
||||||
|
|
||||||
Baker::Baker(const hfm::Model::Pointer& hfmModel) :
|
Baker::Baker(const hfm::Model::Pointer& hfmModel) :
|
||||||
_engine(std::make_shared<Engine>(BakerEngineBuilder::JobModel::create("Baker"), std::make_shared<ImportContext>())) {
|
_engine(std::make_shared<Engine>(BakerEngineBuilder::JobModel::create("Baker"), std::make_shared<BakeContext>())) {
|
||||||
_engine->feedInput<BakerEngineBuilder::Input>(0, hfmModel);
|
_engine->feedInput<BakerEngineBuilder::Input>(0, hfmModel);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -16,14 +16,14 @@
|
||||||
|
|
||||||
namespace baker {
|
namespace baker {
|
||||||
|
|
||||||
class ImportContext : public task::JobContext {
|
class BakeContext : public task::JobContext {
|
||||||
public:
|
public:
|
||||||
// No context settings yet for model prep
|
// No context settings yet for model prep
|
||||||
};
|
};
|
||||||
using ImportContextPointer = std::shared_ptr<ImportContext>;
|
using BakeContextPointer = std::shared_ptr<BakeContext>;
|
||||||
|
|
||||||
Task_DeclareCategoryTimeProfilerClass(BakerTimeProfiler, trace_baker);
|
Task_DeclareCategoryTimeProfilerClass(BakerTimeProfiler, trace_baker);
|
||||||
Task_DeclareTypeAliases(ImportContext, BakerTimeProfiler)
|
Task_DeclareTypeAliases(BakeContext, BakerTimeProfiler)
|
||||||
|
|
||||||
using EnginePointer = std::shared_ptr<Engine>;
|
using EnginePointer = std::shared_ptr<Engine>;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue