Home | History | Annotate | Download | only in dvr

Lines Matching defs:Surface

16 class Surface : public pdx::ClientBase<Surface> {
20 static pdx::Status<std::unique_ptr<Surface>> CreateSurface(
23 pdx::Status<std::unique_ptr<Surface>> status;
24 if (auto surface = Create(attributes, &error))
25 status.SetValue(std::move(surface));
64 explicit Surface(const SurfaceAttributes& attributes, int* error = nullptr);
65 explicit Surface(pdx::LocalChannelHandle channel_handle,
68 Surface(const Surface&) = delete;
69 void operator=(const Surface&) = delete;
81 pdx::Status<std::unique_ptr<Surface>> CreateSurface(