/* * Copyright (C) 2024 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include namespace android::gui { struct DisplayLuts : public Parcelable { public: struct Entry : public Parcelable { Entry() {}; Entry(int32_t lutDimension, int32_t lutSize, int32_t lutSamplingKey) : dimension(lutDimension), size(lutSize), samplingKey(lutSamplingKey) {} int32_t dimension; int32_t size; int32_t samplingKey; status_t writeToParcel(android::Parcel* parcel) const override; status_t readFromParcel(const android::Parcel* parcel) override; }; DisplayLuts() {} DisplayLuts(base::unique_fd lutfd, std::vector lutoffsets, std::vector lutdimensions, std::vector lutsizes, std::vector lutsamplingKeys) { fd = std::move(lutfd); offsets = lutoffsets; lutProperties.reserve(offsets.size()); for (size_t i = 0; i < lutoffsets.size(); i++) { Entry entry{lutdimensions[i], lutsizes[i], lutsamplingKeys[i]}; lutProperties.emplace_back(entry); } } status_t writeToParcel(android::Parcel* parcel) const override; status_t readFromParcel(const android::Parcel* parcel) override; const base::unique_fd& getLutFileDescriptor() const { return fd; } std::vector lutProperties; std::vector offsets; private: base::unique_fd fd; }; // struct DisplayLuts } // namespace android::gui