blob: 0c24751226e19bb298cc1fe667cdd6dd51e2f31d [file] [log] [blame]
From c33cb7b6597d8b8e90b3cd1c15e906e56f8565a9 Mon Sep 17 00:00:00 2001
From: ChenJasonK <Jason.k.chen@intel.com>
Date: Mon, 30 Mar 2020 11:11:33 +0800
Subject: [PATCH] [Media Common] Modify the default tile type
Modify the default tile type as tile Y
Change-Id: I46590ef3d652db773afe842a3e818a28ba9d42c5
---
media_driver/linux/common/ddi/media_libva_util.cpp | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/media_driver/linux/common/ddi/media_libva_util.cpp b/media_driver/linux/common/ddi/media_libva_util.cpp
index b393cd51..d0d7e639 100755
--- a/media_driver/linux/common/ddi/media_libva_util.cpp
+++ b/media_driver/linux/common/ddi/media_libva_util.cpp
@@ -1,5 +1,5 @@
/*
-* Copyright (c) 2009-2019, Intel Corporation
+* Copyright (c) 2009-2020, Intel Corporation
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
@@ -449,7 +449,7 @@ VAStatus DdiMediaUtil_AllocateSurface(
tileformat = I915_TILING_NONE;
break;
default:
- tileformat = I915_TILING_NONE;
+ tileformat = I915_TILING_Y;
break;
}
--
2.26.0.windows.1