Home
last modified time | relevance | path

Searched refs:DvrSurface (Results 1 – 5 of 5) 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
32 void dvrSurfaceDestroy(DvrSurface* surface);
55 void operator()(DvrSurface* p) { dvrSurfaceDestroy(p); } in operator()
73 using UniqueDvrSurface = MakeUniqueDvrPointer<DvrSurface>;
Ddvr_api.h45 typedef struct DvrSurface DvrSurface; typedef
238 DvrSurface** surface_out);
239 typedef void (*DvrSurfaceDestroyPtr)(DvrSurface* surface);
240 typedef int (*DvrSurfaceGetIdPtr)(DvrSurface* surface);
241 typedef int (*DvrSurfaceSetAttributesPtr)(DvrSurface* surface,
245 DvrSurface* surface, uint32_t width, uint32_t height, uint32_t format,
/frameworks/native/libs/vr/libdvr/
Ddvr_surface.cpp87 struct DvrSurface { struct
92 size_t attribute_count, DvrSurface** out_surface) { in dvrSurfaceCreate() argument
114 *out_surface = new DvrSurface{status.take()}; in dvrSurfaceCreate()
118 void dvrSurfaceDestroy(DvrSurface* surface) { delete surface; } in dvrSurfaceDestroy()
120 int dvrSurfaceGetId(DvrSurface* surface) { in dvrSurfaceGetId()
124 int dvrSurfaceSetAttributes(DvrSurface* surface, in dvrSurfaceSetAttributes()
154 int dvrSurfaceCreateWriteBufferQueue(DvrSurface* surface, uint32_t width, in dvrSurfaceCreateWriteBufferQueue()
/frameworks/native/libs/vr/libdvr/tests/
Ddvr_display_manager-test.cpp116 DvrSurface* surface = nullptr; in CreateApplicationSurface()