Home | History | Annotate | Download | only in dynamic_depth

Lines Matching defs:Camera

23 // The camera trait is serialized only if it is one of PHYSICAL or LOGICAL.
69 // Implements the Camera element from the Dynamic Depth specification, with
71 class Camera : public Element {
79 // Creates a Camera from the given objects in params.
82 static std::unique_ptr<Camera> FromData(std::unique_ptr<CameraParams> params);
85 // only for Camera 0, since the lack of an Image element indicates that it
91 static std::unique_ptr<Camera> FromDataForCamera0(
95 // Returns the deserialized Camera object, null if parsing fails.
96 // Not sensitive to case when parsing a camera's trait.
97 static std::unique_ptr<Camera> FromDeserializer(
114 Camera(const Camera&) = delete;
115 void operator=(const Camera&) = delete;
118 explicit Camera(std::unique_ptr<CameraParams> params);