24 lines
586 B
C++
24 lines
586 B
C++
/*
|
|
* Copyright (C) 2019-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "igfxfmid.h"
|
|
|
|
#include <cstddef>
|
|
|
|
namespace NEO {
|
|
struct HardwareInfo;
|
|
|
|
struct SpecialUltHelperGen12lp {
|
|
static bool additionalCoherencyCheck(PRODUCT_FAMILY productFamily, bool coherency);
|
|
static bool shouldPerformimagePitchAlignment(PRODUCT_FAMILY productFamily);
|
|
static bool shouldTestDefaultImplementationOfSetupHardwareCapabilities(PRODUCT_FAMILY productFamily);
|
|
static bool isPipeControlWArequired(PRODUCT_FAMILY productFamily);
|
|
};
|
|
} // namespace NEO
|