Home
last modified time | relevance | path

Searched refs:nRects (Results 1 – 3 of 3) sorted by relevance

/ohos5.0/foundation/graphic/graphic_2d/frameworks/opengl_wrapper/src/EGL/
H A Degl_wrapper_display.cpp1009 …LBoolean EglWrapperDisplay::SwapBuffersWithDamageKHR(EGLSurface draw, EGLint *rects, EGLint nRects) in SwapBuffersWithDamageKHR() argument
1021 if (nRects < 0 || (nRects > 0 && rects == NULL)) { in SwapBuffersWithDamageKHR()
1031 disp_, surfacePtr->GetEglSurface(), rects, nRects); in SwapBuffersWithDamageKHR()
1039 EGLBoolean EglWrapperDisplay::SetDamageRegionKHR(EGLSurface surf, EGLint *rects, EGLint nRects) in SetDamageRegionKHR() argument
1051 if (nRects < 0 || (nRects > 0 && rects == nullptr)) { in SetDamageRegionKHR()
1061 disp_, surfPtr->GetEglSurface(), rects, nRects); in SetDamageRegionKHR()
1207 …EglWrapperDisplay::SwapBuffersWithDamageEXT(EGLSurface surface, const EGLint *rects, EGLint nRects) in SwapBuffersWithDamageEXT() argument
1218 if (nRects < 0 || (nRects > 0 && rects == nullptr)) { in SwapBuffersWithDamageEXT()
1228 disp_, surfPtr->GetEglSurface(), rects, nRects); in SwapBuffersWithDamageEXT()
H A Degl_wrapper_display.h109 EGLBoolean SwapBuffersWithDamageKHR(EGLSurface draw, EGLint *rects, EGLint nRects);
110 EGLBoolean SetDamageRegionKHR(EGLSurface surf, EGLint *rects, EGLint nRects);
116 EGLBoolean SwapBuffersWithDamageEXT(EGLSurface surface, const EGLint *rects, EGLint nRects);
H A Degl_wrapper_entry.cpp1280 EGLint *rects, EGLint nRects) in EglSwapBuffersWithDamageKHRImpl() argument
1289 return display->SwapBuffersWithDamageKHR(draw, rects, nRects); in EglSwapBuffersWithDamageKHRImpl()
1293 EGLint *rects, EGLint nRects) in EglSetDamageRegionKHRImpl() argument
1302 return display->SetDamageRegionKHR(surf, rects, nRects); in EglSetDamageRegionKHRImpl()
1392 …wapBuffersWithDamageEXTImpl(EGLDisplay dpy, EGLSurface surface, const EGLint *rects, EGLint nRects) in EglSwapBuffersWithDamageEXTImpl() argument
1399 return display->SwapBuffersWithDamageEXT(surface, rects, nRects); in EglSwapBuffersWithDamageEXTImpl()