diff options
| author | 2019-07-03 18:15:59 +0000 | |
|---|---|---|
| committer | 2019-07-03 18:15:59 +0000 | |
| commit | fa0380d8c54b38cc7db53d943a3f62313879ea78 (patch) | |
| tree | db586aa0e3b8a77512d79924f8743d9a4a6c274c /libs/graphicsenv/IGpuService.cpp | |
| parent | 79afff79ef989876b66a6de97f6b83bef6dc1ccb (diff) | |
| parent | 27ab3ac610954ac01a18a1cf8559827cf7679f99 (diff) | |
Merge "GpuStats: move GpuStats related structs and enums away from GraphicsEnv"
Diffstat (limited to 'libs/graphicsenv/IGpuService.cpp')
| -rw-r--r-- | libs/graphicsenv/IGpuService.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/graphicsenv/IGpuService.cpp b/libs/graphicsenv/IGpuService.cpp index 5f9624918f..30e5370650 100644 --- a/libs/graphicsenv/IGpuService.cpp +++ b/libs/graphicsenv/IGpuService.cpp @@ -30,7 +30,7 @@ public: virtual void setGpuStats(const std::string& driverPackageName, const std::string& driverVersionName, uint64_t driverVersionCode, int64_t driverBuildTime, const std::string& appPackageName, - const int32_t vulkanVersion, GraphicsEnv::Driver driver, + const int32_t vulkanVersion, GpuStatsInfo::Driver driver, bool isDriverLoaded, int64_t driverLoadingTime) { Parcel data, reply; data.writeInterfaceToken(IGpuService::getInterfaceDescriptor()); @@ -143,7 +143,7 @@ status_t BnGpuService::onTransact(uint32_t code, const Parcel& data, Parcel* rep if ((status = data.readInt64(&driverLoadingTime)) != OK) return status; setGpuStats(driverPackageName, driverVersionName, driverVersionCode, driverBuildTime, - appPackageName, vulkanVersion, static_cast<GraphicsEnv::Driver>(driver), + appPackageName, vulkanVersion, static_cast<GpuStatsInfo::Driver>(driver), isDriverLoaded, driverLoadingTime); return OK; |