You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
618 B
20 lines
618 B
4 months ago
|
/*
|
||
|
* Copyright (c) Hisilicon Technologies Co., Ltd.. 2020-2020. All rights reserved.
|
||
|
* Description: Support private hwgraphics hidl interface
|
||
|
* Author: Hisilicon
|
||
|
* Created: 2020.05.22
|
||
|
*/
|
||
|
#define LOG_TAG "vendor.huanglong.hardware.hwgraphics@1.2-service"
|
||
|
|
||
|
#include <vendor/huanglong/hardware/hwgraphics/1.2/IGraphics.h>
|
||
|
#include <hidl/LegacySupport.h>
|
||
|
|
||
|
using android::hardware::defaultPassthroughServiceImplementation;
|
||
|
using vendor::huanglong::hardware::hwgraphics::V1_2::IGraphics;
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
const int maxBinderThread = 4;
|
||
|
return defaultPassthroughServiceImplementation<IGraphics>(maxBinderThread);
|
||
|
}
|