mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-20 00:24:58 +08:00
16 lines
445 B
C++
16 lines
445 B
C++
|
|
/*
|
||
|
|
* Copyright (C) 2025 Intel Corporation
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: MIT
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|
||
|
|
#include "shared/source/helpers/image_helper.h"
|
||
|
|
|
||
|
|
namespace NEO {
|
||
|
|
|
||
|
|
bool ImageHelper::areImagesCompatibleWithPackedFormat(const ProductHelper &productHelper, const ImageInfo &srcImageInfo, const ImageInfo &dstImageInfo, const GraphicsAllocation *srcAllocation, const GraphicsAllocation *dstAllocation, size_t copyWidth) {
|
||
|
|
return false;
|
||
|
|
}
|
||
|
|
|
||
|
|
} // namespace NEO
|