Home
last modified time | relevance | path

Searched refs:DvrSurface (Results 1 – 6 of 6) sorted by relevance

/frameworks/native/libs/vr/libdvr/include/dvr/
Ddvr_surface.h57 size_t attribute_count, DvrSurface** surface_out);
60 void dvrSurfaceDestroy(DvrSurface* surface);
63 int dvrSurfaceGetId(DvrSurface* surface);
67 int dvrSurfaceSetAttributes(DvrSurface* surface,
76 int dvrSurfaceCreateWriteBufferQueue(DvrSurface* surface, uint32_t width,
Ddvr_deleter.h20 typedef struct DvrSurface DvrSurface; typedef
31 void dvrSurfaceDestroy(DvrSurface* surface);
53 void operator()(DvrSurface* p) { dvrSurfaceDestroy(p); } in operator()
70 using UniqueDvrSurface = MakeUniqueDvrPointer<DvrSurface>;
Ddvr_api.h46 typedef struct DvrSurface DvrSurface; typedef
245 DvrSurface** surface_out);
246 typedef void (*DvrSurfaceDestroyPtr)(DvrSurface* surface);
247 typedef int (*DvrSurfaceGetIdPtr)(DvrSurface* surface);
248 typedef int (*DvrSurfaceSetAttributesPtr)(DvrSurface* surface,
252 DvrSurface* surface, uint32_t width, uint32_t height, uint32_t format,
/frameworks/native/libs/vr/libdvr/
Ddvr_surface.cpp86 struct DvrSurface { struct
91 size_t attribute_count, DvrSurface** out_surface) { in dvrSurfaceCreate() argument
113 *out_surface = new DvrSurface{status.take()}; in dvrSurfaceCreate()
117 void dvrSurfaceDestroy(DvrSurface* surface) { delete surface; } in dvrSurfaceDestroy()
119 int dvrSurfaceGetId(DvrSurface* surface) { in dvrSurfaceGetId()
123 int dvrSurfaceSetAttributes(DvrSurface* surface, in dvrSurfaceSetAttributes()
153 int dvrSurfaceCreateWriteBufferQueue(DvrSurface* surface, uint32_t width, in dvrSurfaceCreateWriteBufferQueue()
/frameworks/native/libs/vr/libdvr/tests/
Ddvr_display-test.cpp63 DvrSurface* direct_surface_ = nullptr;
192 DvrSurface* direct_surface_0 = nullptr; in TEST_F()
209 DvrSurface* direct_surface_1 = nullptr; in TEST_F()
Ddvr_display_manager-test.cpp119 DvrSurface* surface = nullptr; in CreateApplicationSurface()