Skip to content

Commit 60a7718

Browse files
authored
Fix U plane Offset regression on Chromium OS (#38)
1 parent 2f966e9 commit 60a7718

File tree

2 files changed

+0
-12
lines changed

2 files changed

+0
-12
lines changed

Source/GmmLib/Texture/GmmTextureAlloc.cpp

-11
Original file line numberDiff line numberDiff line change
@@ -344,17 +344,6 @@ bool GmmLib::GmmTextureCalc::ValidateTexInfo(GMM_TEXTURE_INFO * pTexInfo,
344344
return false;
345345
}
346346

347-
if(GmmIsPlanar(pTexInfo->Format))
348-
{
349-
if((!GmmIsReconstructableSurface(pTexInfo->Format)) && (pTexInfo->OffsetInfo.Plane.Y[GMM_PLANE_U] >= GMM_MAX_UV_PLANE_Y_OFFSET))
350-
{
351-
GMM_ASSERTDPF(0,
352-
"GmmLib::GmmTextureCalc::ValidateTexInfo:Y offset of U plane"
353-
"exceeds max HW U plane Y offset restriction.\r\n");
354-
return false;
355-
}
356-
}
357-
358347
GMM_DPF_EXIT;
359348
return true;
360349
}

Source/GmmLib/inc/External/Common/GmmConst.h

-1
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,3 @@ OTHER DEALINGS IN THE SOFTWARE.
5252
#define GMM_MEDIA_COMPRESSION_STATE_SIZE (64)
5353
#define GMM_CLEAR_COLOR_FLOAT_SIZE (16)
5454
#define GMM_MAX_LCU_SIZE 64 // Media Largest coding Unit
55-
#define GMM_MAX_UV_PLANE_Y_OFFSET GMM_KBYTE(16) // RENDER_SURFACE_STATE structure only have 0:13 bit to write Y Offset for U or UV Plan(max value is <16384)

0 commit comments

Comments
 (0)