We use the terms "flags" and "usage" interchangeably in this repo,
since they essentally mean the same thing. However, let's be a
little more consistent since it's kind of confusing, especially
when buffer map flags come to play. Let's:
- refer to everything in the drv_* layer as use_flags
- refer to everything in the gbm/gralloc layers as
usages
BUG=chromium:764871
TEST=emerge-eve {arc-cros-gralloc, minigbm}
Change-Id: If987d72369b895f38cde87e50ce1080f78f2a084
Reviewed-on: https://chromium-review.googlesource.com/691423
Commit-Ready: Gurchetan Singh <gurchetansingh@chromium.org>
Tested-by: Gurchetan Singh <gurchetansingh@chromium.org>
Reviewed-by: Stéphane Marchesin <marcheu@chromium.org>
35 lines
896 B
C
35 lines
896 B
C
/*
|
|
* Copyright 2016 The Chromium OS Authors. All rights reserved.
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#include <stddef.h>
|
|
#include <stdio.h>
|
|
|
|
#include "drv.h"
|
|
#include "gbm.h"
|
|
|
|
uint64_t gbm_convert_usage(uint32_t usage)
|
|
{
|
|
uint64_t use_flags = BO_USE_NONE;
|
|
|
|
if (usage & GBM_BO_USE_SCANOUT)
|
|
use_flags |= BO_USE_SCANOUT;
|
|
if (usage & GBM_BO_USE_CURSOR)
|
|
use_flags |= BO_USE_CURSOR;
|
|
if (usage & GBM_BO_USE_CURSOR_64X64)
|
|
use_flags |= BO_USE_CURSOR_64X64;
|
|
if (usage & GBM_BO_USE_RENDERING)
|
|
use_flags |= BO_USE_RENDERING;
|
|
if (usage & GBM_BO_USE_TEXTURING)
|
|
use_flags |= BO_USE_TEXTURE;
|
|
if (usage & GBM_BO_USE_LINEAR)
|
|
use_flags |= BO_USE_LINEAR;
|
|
if (usage & GBM_BO_USE_CAMERA_WRITE)
|
|
use_flags |= BO_USE_CAMERA_WRITE;
|
|
if (usage & GBM_BO_USE_CAMERA_READ)
|
|
use_flags |= BO_USE_CAMERA_READ;
|
|
|
|
return use_flags;
|
|
}
|