refactor: improve creating 48b resources

Signed-off-by: Dunajski, Bartosz <bartosz.dunajski@intel.com>
This commit is contained in:
Dunajski, Bartosz
2023-12-28 14:18:34 +00:00
committed by Compute-Runtime-Automation
parent 5535ef3049
commit d7b6f11ced
5 changed files with 50 additions and 5 deletions

View File

@@ -176,6 +176,8 @@ class GfxCoreHelper {
virtual bool areSecondaryContextsSupported() const = 0;
virtual uint32_t getContextGroupContextsCount() const = 0;
virtual bool is48ResourceNeededForCmdBuffer() const = 0;
virtual ~GfxCoreHelper() = default;
protected:
@@ -390,6 +392,8 @@ class GfxCoreHelperHw : public GfxCoreHelper {
bool areSecondaryContextsSupported() const override;
uint32_t getContextGroupContextsCount() const override;
bool is48ResourceNeededForCmdBuffer() const override;
~GfxCoreHelperHw() override = default;
protected: