IQtiMapper: Add HAL for QtiMapper getters.
CRs-Fixed: 2411577 Change-Id: Ied8a979ff31d7436c361e7fcc45ddd7a8d60d0c2
This commit is contained in:
@@ -36,6 +36,7 @@ fcc31b8e0d422752cf4f4c69618488ea9cd5a4e0f21404adca087dc4ef23d6df vendor.display.
|
||||
f5c217947f9e7ddc9b20d339928adfb4c84fb91969119b2479e9993ca3e4db08 vendor.qti.hardware.display.composer@1.0::IQtiComposer
|
||||
6a1ce8d44bf75d2102ae54bddce02f2bc7bd064444c30402b6dea741114703de vendor.qti.hardware.display.composer@1.0::IQtiComposerClient
|
||||
db19f93c419a59c901c1530a9241480b047a0f026b2eef7fe0c55cf3874c56c0 vendor.qti.hardware.display.mapper@1.0::IQtiMapper
|
||||
f955d3cd7704809f64a6e1f5b1e6cf92b3765386af5e7e485ec4563c975467ba vendor.qti.hardware.display.mapper@1.1::IQtiMapper
|
||||
503415d1b4d8aefe231fd751cc36e374e91d561f3d3dd3459f31f3a67aa6dfe5 vendor.display.config@1.2::IDisplayConfig
|
||||
e89567ed6383dc0e5fd168babaf046352962b571f47fba26804c2c7690256b1f vendor.display.config@1.3::IDisplayConfig
|
||||
cbdb70cc5999b9537497b1e56955278ce1c3510245c82f861bf847ed1609f05b vendor.display.config@1.4::IDisplayConfig
|
||||
|
||||
109
display/mapper/1.1/IQtiMapper.hal
Normal file
109
display/mapper/1.1/IQtiMapper.hal
Normal file
@@ -0,0 +1,109 @@
|
||||
/*
|
||||
* Copyright (c) 2019 The Linux Foundation. All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions are
|
||||
* met:
|
||||
* * Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* * Redistributions in binary form must reproduce the above
|
||||
* copyright notice, this list of conditions and the following
|
||||
* disclaimer in the documentation and/or other materials provided
|
||||
* with the distribution.
|
||||
* * Neither the name of The Linux Foundation. nor the names of its
|
||||
* contributors may be used to endorse or promote products derived
|
||||
* from this software without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
|
||||
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
|
||||
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
|
||||
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
|
||||
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
|
||||
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
package vendor.qti.hardware.display.mapper@1.1;
|
||||
|
||||
import android.hardware.graphics.mapper@2.0::types;
|
||||
import @1.0::IQtiMapper;
|
||||
|
||||
interface IQtiMapper extends @1.0::IQtiMapper {
|
||||
|
||||
/*
|
||||
* Get fd of allocated buffer.
|
||||
*/
|
||||
@callflow(next="*")
|
||||
getFd(pointer buffer) generates (Error error, int32_t fd);
|
||||
|
||||
/*
|
||||
* Get width of the actual allocated buffer.
|
||||
*/
|
||||
@callflow(next="*")
|
||||
getWidth(pointer buffer) generates (Error error, int32_t width);
|
||||
|
||||
/*
|
||||
* Get height of the actual allocated buffer.
|
||||
*/
|
||||
@callflow(next="*")
|
||||
getHeight(pointer buffer) generates (Error error, int32_t height);
|
||||
|
||||
/*
|
||||
* Get offset of allocated buffer.
|
||||
*/
|
||||
@callflow(next="*")
|
||||
getOffset(pointer buffer) generates (Error error, uint64_t offset);
|
||||
|
||||
/*
|
||||
* Get size of allocated buffer.
|
||||
*/
|
||||
@callflow(next="*")
|
||||
getSize(pointer buffer) generates (Error error, uint64_t size);
|
||||
|
||||
/*
|
||||
* Get width ask to allocate.
|
||||
*/
|
||||
@callflow(next="*")
|
||||
getUnalignedWidth(pointer buffer) generates (Error error, int32_t unaligned_width);
|
||||
|
||||
/*
|
||||
* Get height ask to allocate.
|
||||
*/
|
||||
@callflow(next="*")
|
||||
getUnalignedHeight(pointer buffer) generates (Error error, int32_t unaligned_height);
|
||||
|
||||
/*
|
||||
* Get number of layer.
|
||||
*/
|
||||
@callflow(next="*")
|
||||
getLayerCount(pointer buffer) generates (Error error, uint64_t layer_count);
|
||||
|
||||
/*
|
||||
* Get Id of allocated buffer.
|
||||
*/
|
||||
@callflow(next="*")
|
||||
getId(pointer buffer) generates (Error error, uint64_t id);
|
||||
|
||||
/*
|
||||
* Get usage flags of allocated buffer.
|
||||
*/
|
||||
@callflow(next="*")
|
||||
getUsageFlags(pointer buffer) generates (Error error, uint64_t usage);
|
||||
|
||||
/*
|
||||
* Get format of allocated buffer.
|
||||
*/
|
||||
@callflow(next="*")
|
||||
getFormat(pointer buffer) generates (Error error, int32_t format);
|
||||
|
||||
/*
|
||||
* Get private flags of allocated buffer.
|
||||
*/
|
||||
@callflow(next="*")
|
||||
getPrivateFlags(pointer buffer) generates (Error error, int32_t flags);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user