replace common qcom sources with samsung ones

This commit is contained in:
SaschaNes
2025-08-12 22:13:00 +02:00
parent ba24dcded9
commit 6f7753de11
5682 changed files with 2450203 additions and 103634 deletions

View File

@@ -0,0 +1,38 @@
// Copyright (c) 2023 Qualcomm Innovation Center, Inc. All rights reserved.
// SPDX-License-Identifier: BSD-3-Clause-Clear
#ifndef __COMMON_BUFFERLAYOUT_H__
#define __COMMON_BUFFERLAYOUT_H__
#include "PlaneLayout.h"
#define QTI_MAX_NUM_PLANES 8
typedef struct vendor_qti_hardware_display_common_BufferLayout {
/**
* Layout for each plane
*/
vendor_qti_hardware_display_common_PlaneLayout planes[QTI_MAX_NUM_PLANES];
/**
* Number of planes in the buffer
*/
int plane_count;
/**
* Overall buffer size in bytes, including padding.
*/
int size_in_bytes;
/**
* Bytes per pixel
*/
int bpp;
/**
* Aligned width (in bytes) of buffer
*/
int aligned_width_in_bytes;
/**
* Aligned height (in number of rows) of buffer
*/
int aligned_height;
} vendor_qti_hardware_display_common_BufferLayout;
#endif // __COMMON_BUFFERLAYOUT_H__