Preliminary implementation of source locking and layer stage levels

This commit is contained in:
Bruno
2021-01-16 22:32:02 +01:00
parent e4da7de06f
commit 9e865b3677
10 changed files with 543 additions and 80 deletions

4
View.h
View File

@@ -164,6 +164,7 @@ public:
void arrow (glm::vec2) override;
private:
Surface *output_surface_;
Node *overlay_position_;
Node *overlay_position_cross_;
Node *overlay_rotation_;
@@ -193,6 +194,9 @@ public:
private:
float aspect_ratio;
Mesh *persp_layer_;
Mesh *persp_left_, *persp_right_;
Group *frame_;
};
class TransitionView : public View