mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 14:55:24 +08:00
Pass root device index to Image::appendSurfaceStateParams
Related-To: NEO-4672 Change-Id: I65b9fcf6c668b903dc4fe134e51202e7c7f093e3 Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
committed by
sys_ocldev
parent
80b983d6d2
commit
f97993ec31
@@ -304,7 +304,7 @@ class ImageHw : public Image {
|
||||
void setMediaImageArg(void *memory, uint32_t rootDeviceIndex) override;
|
||||
void setMediaSurfaceRotation(void *memory) override;
|
||||
void setSurfaceMemoryObjectControlStateIndexToMocsTable(void *memory, uint32_t value) override;
|
||||
void appendSurfaceStateParams(RENDER_SURFACE_STATE *surfaceState);
|
||||
void appendSurfaceStateParams(RENDER_SURFACE_STATE *surfaceState, uint32_t rootDeviceIndex);
|
||||
void appendSurfaceStateDepthParams(RENDER_SURFACE_STATE *surfaceState, Gmm *gmm);
|
||||
void appendSurfaceStateExt(void *memory);
|
||||
void transformImage2dArrayTo3d(void *memory) override;
|
||||
|
||||
@@ -90,7 +90,7 @@ void ImageHw<GfxFamily>::setImageArg(void *memory, bool setAsMediaBlockImage, ui
|
||||
setAuxParamsForCCS<GfxFamily>(surfaceState, gmm);
|
||||
}
|
||||
appendSurfaceStateDepthParams(surfaceState, gmm);
|
||||
appendSurfaceStateParams(surfaceState);
|
||||
appendSurfaceStateParams(surfaceState, rootDeviceIndex);
|
||||
appendSurfaceStateExt(surfaceState);
|
||||
}
|
||||
|
||||
@@ -121,7 +121,7 @@ void ImageHw<GfxFamily>::setAuxParamsForMultisamples(RENDER_SURFACE_STATE *surfa
|
||||
}
|
||||
|
||||
template <typename GfxFamily>
|
||||
void ImageHw<GfxFamily>::appendSurfaceStateParams(RENDER_SURFACE_STATE *surfaceState) {
|
||||
void ImageHw<GfxFamily>::appendSurfaceStateParams(RENDER_SURFACE_STATE *surfaceState, uint32_t rootDeviceIndex) {
|
||||
}
|
||||
|
||||
template <typename GfxFamily>
|
||||
|
||||
Reference in New Issue
Block a user