Searched refs:DvrSurface (Results 1 – 6 of 6) sorted by relevance
/frameworks/native/libs/vr/libdvr/include/dvr/ |
D | dvr_surface.h | 57 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,
|
D | dvr_deleter.h | 20 typedef struct DvrSurface DvrSurface; typedef 31 void dvrSurfaceDestroy(DvrSurface* surface); 53 void operator()(DvrSurface* p) { dvrSurfaceDestroy(p); } in operator() 70 using UniqueDvrSurface = MakeUniqueDvrPointer<DvrSurface>;
|
D | dvr_api.h | 46 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/ |
D | dvr_surface.cpp | 86 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/ |
D | dvr_display-test.cpp | 63 DvrSurface* direct_surface_ = nullptr; 192 DvrSurface* direct_surface_0 = nullptr; in TEST_F() 209 DvrSurface* direct_surface_1 = nullptr; in TEST_F()
|
D | dvr_display_manager-test.cpp | 119 DvrSurface* surface = nullptr; in CreateApplicationSurface()
|