blob: 4d583100f557def1895313350f8f7c460b575661 [file] [log] [blame]
// Copyright 2016 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "src/ui/lib/escher/scene/stage.h"
#include "src/lib/fxl/logging.h"
namespace escher {
Stage::Stage() : clear_color_(0.f, 0.f, 0.f, 0.f) {}
Stage::~Stage() {}
void Stage::set_viewing_volume(ViewingVolume value) { viewing_volume_ = std::move(value); }
} // namespace escher