Searched refs:EglImage (Results 1 – 5 of 5) sorted by relevance
/device/generic/opengl-transport/host/libs/virglrenderer/ |
D | EglImage.h | 27 struct EglImage { struct 28 static std::map<uint32_t, EglImage*> map; argument 31 EglImage(EGLDisplay dpy_, EGLImageKHR image_, PFNEGLDESTROYIMAGEKHR pfnEglDestroyImageKHR_) in EglImage() argument 36 ~EglImage() { in ~EglImage() argument
|
D | RenderControl.cpp | 628 EglImage* img = new (std::nothrow) EglImage(rc->dpy, image, s_egl.eglDestroyImageKHR); in rcBindTexture() 667 EglImage* img = new (std::nothrow) EglImage(rc->dpy, image, s_egl.eglDestroyImageKHR); in rcBindRenderbuffer() 715 EglImage* img = new (std::nothrow) EglImage(rc->dpy, image, s_egl.eglDestroyImageKHR); in rcCreateClientImage() 725 std::map<uint32_t, EglImage*>::iterator it; in rcDestroyClientImage() 726 it = EglImage::map.find(image_); in rcDestroyClientImage() 727 if (it == EglImage::map.end()) in rcDestroyClientImage() 730 EglImage* image = it->second; in rcDestroyClientImage()
|
D | README.md | 99 ### [`EglImage`](EglImage.h)[](EglImage) 101 The EglImage structure maintains a list of active EGLImageKHRs, and decides
|
D | Resource.h | 69 EglImage* image = nullptr;
|
D | AVDVirglRenderer.cpp | 99 std::map<uint32_t, EglImage*> EglImage::map; 108 uint32_t EglImage::nextId = 1U;
|