clang formatting
[staging/windowmanager.git] / src / layers.cpp
index abf8303..3205323 100644 (file)
@@ -1,6 +1,18 @@
-//
-// Created by m on 7/27/17.
-//
+/*
+ * Copyright (C) 2017 Mentor Graphics Development (Deutschland) GmbH
+ *
+ * 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.
+ */
 
 #include <algorithm>
 
@@ -55,6 +67,11 @@ struct result<struct layer_map> to_layer_map(nlohmann::json const &j) {
          }
       }
 
+      auto msi = j.find("main_surface");
+      if (msi != j.end()) {
+         stl.main_surface = get<int>((*msi)["surface_id"]);
+      }
+
       // Check lookup
       auto jtests = j.value("tests", json());
 
@@ -145,7 +162,7 @@ json layer::to_json() const {
 
 json layer_map::to_json() const {
    json j{};
-   for (auto const &i: this->mapping) {
+   for (auto const &i : this->mapping) {
       j.push_back(i.to_json());
    }
    return j;