Commit 0857f623 authored by dcastagna's avatar dcastagna Committed by Commit bot

Roll src/third_party/minigbm f9e7c4c8..3345977b.

https://chromium.googlesource.com/chromiumos/platform/minigbm.git/+log/f9e7c4c8..3345977b

git log f9e7c4c8..3345977b --date=short --no-merges --format='%ad %ae %s'
2016-09-16 hoegsberg@chromium.org minigbm: add new GBM_BO_IMPORT_FD_PLANAR
2016-10-19 gurchetansingh@chromium.org minigbm: Remove SCANOUT flags from YV12
2016-10-17 gurchetansingh@chromium.org minigbm: mediatek: add required Android buffers
2016-10-13 gurchetansingh@chromium.org minigbm: i915: make Y-tiling default
2016-10-13 gurchetansingh@chromium.org minigbm: rockchip: Enable required Android buffers
2016-09-30 gurchetansingh@chromium.org minigbm: add vgem backend
2016-09-23 gurchetansingh@chromium.org minigbm: rockchip: enable NV12 for Android
2016-09-22 gurchetansingh@chromium.org minigbm: i915: enable required Android buffers
2016-09-12 gurchetansingh@chromium.org minigbm: Fix the flag situation
2016-08-24 gurchetansingh@chromium.org minigbm: Implemented cros_gralloc
2016-10-06 gurchetansingh@chromium.org minigbm: More sophisticated gbm_bo_map/gbm_bo_unmap
2016-10-09 vapier@chromium.org Revert "Add new GBM_BO_IMPORT_FD_PLANAR"
2016-09-16 hoegsberg@chromium.org Add new GBM_BO_IMPORT_FD_PLANAR
2016-10-05 gurchetansingh@chromium.org minigbm: quick and dirty implementation of gbm_bo_map/gbm_bo_unmap
2016-07-28 akshu.agrawal@amd.com minigbm: Add AMDGPU minigbm driver
2016-08-29 gurchetansingh@chromium.org minigbm: Map and unmap correct size
2016-08-29 gurchetansingh@chromium.org minigbm: Added YV12 for Mali platforms
2016-08-29 gurchetansingh@chromium.org minigbm: Fix switch statements
2016-08-05 dcastagna@chromium.org Add XBGR8888 to rockchip supported formats.
2016-08-19 gurchetansingh@chromium.org minigbm: Added support for multiplane import
2016-07-19 gurchetansingh@chromium.org minigbm: Add YV12 for i915
2016-08-16 gurchetansingh@chromium.org minigbm: Added gralloc API to internal API
2016-08-16 gurchetansingh@chromium.org minigbm: Remove drv prefix from static backend functions
2016-08-12 gurchetansingh@chromium.org minigbm: Add mmap() in backends
2016-08-03 gurchetansingh@chromium.org minigbm: Add userspace reference counting
2016-08-05 gurchetansingh@chromium.org minigbm: Refactored minigbm on top a private API
2016-05-19 vince.h@nvidia.com minigm: add kind C32_2CRA and set it as default
2016-07-14 gurchetansingh@chromium.org minigbm: One buffer for NV12

BUG=

Review-Url: https://codereview.chromium.org/2444993002
Cr-Commit-Position: refs/heads/master@{#427114}
parent 621c326b
...@@ -405,7 +405,7 @@ deps_os = { ...@@ -405,7 +405,7 @@ deps_os = {
# Graphics buffer allocator for Chrome OS. # Graphics buffer allocator for Chrome OS.
'src/third_party/minigbm/src': 'src/third_party/minigbm/src':
Var('chromium_git') + '/chromiumos/platform/minigbm.git' + '@' + 'f9e7c4c8e91fb354abf714c7a5c89b4990814ff3', Var('chromium_git') + '/chromiumos/platform/minigbm.git' + '@' + '3345977b5e9ef13f97e2e858241297fc4bfc7401',
# Display server protocol for Linux. # Display server protocol for Linux.
'src/third_party/wayland/src': 'src/third_party/wayland/src':
......
...@@ -25,10 +25,13 @@ if (!use_system_minigbm) { ...@@ -25,10 +25,13 @@ if (!use_system_minigbm) {
shared_library("minigbm") { shared_library("minigbm") {
sources = [ sources = [
"src/amdgpu.c",
"src/cirrus.c", "src/cirrus.c",
"src/drv.c",
"src/evdi.c", "src/evdi.c",
"src/exynos.c", "src/exynos.c",
"src/gbm.c", "src/gbm.c",
"src/gbm_helpers.c",
"src/gma500.c", "src/gma500.c",
"src/helpers.c", "src/helpers.c",
"src/i915.c", "src/i915.c",
...@@ -37,6 +40,7 @@ if (!use_system_minigbm) { ...@@ -37,6 +40,7 @@ if (!use_system_minigbm) {
"src/rockchip.c", "src/rockchip.c",
"src/tegra.c", "src/tegra.c",
"src/udl.c", "src/udl.c",
"src/vgem.c",
"src/virtio_gpu.c", "src/virtio_gpu.c",
] ]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment