Home
last modified time | relevance | path

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

/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/src/gles/
H A Dnode_context_pool_manager_gles.cpp266 …GLenum attachType, const BindImage& image, uint32_t& width, uint32_t& height, uint32_t views, bool… in BindToFbo() argument
300 glFramebufferRenderbuffer(GL_FRAMEBUFFER, attachType, GL_RENDERBUFFER, plat.renderBuffer); in BindToFbo()
305 …GL_FRAMEBUFFER, attachType, plat.image, (GLint)image.mipLevel, (GLint)image.layer, (GLsizei)views); in BindToFbo()
308 … GL_FRAMEBUFFER, attachType, plat.image, (GLint)image.mipLevel, (GLint)image.layer); in BindToFbo()
311 … glFramebufferTexture2D(GL_FRAMEBUFFER, attachType, plat.type, plat.image, (GLint)image.mipLevel); in BindToFbo()
316 void BindToFboMultisampled(GLenum attachType, const BindImage& image, const BindImage& resolveImage… in BindToFboMultisampled() argument
353 glFramebufferRenderbuffer(GL_FRAMEBUFFER, attachType, GL_RENDERBUFFER, plat.renderBuffer); in BindToFboMultisampled()
362 … GL_FRAMEBUFFER, attachType, plat.image, image.mipLevel, samples, image.layer, views); in BindToFboMultisampled()
370 … GL_FRAMEBUFFER, attachType, plat.image, (GLint)image.mipLevel, (GLint)image.layer); in BindToFboMultisampled()
380 GL_FRAMEBUFFER, attachType, plat.type, plat.image, (GLint)image.mipLevel, samples); in BindToFboMultisampled()
[all …]
/ohos5.0/foundation/communication/netmanager_base/services/netmanagernative/bpf/src/
H A Dbpf_loader.cpp51 #define DEFINE_ATTACH_TYPE(progName, attachType, needExpectedAttach) \ argument
53 progName, attachType, needExpectedAttach \
102 bpf_attach_type attachType; member
625 attr.expected_attach_type = prog.attachType; in BpfLoadProgram()
664 if (SysBpfObjAttach(prog.attachType, progFd, cgroupFd) < NETSYS_SUCCESS) { in DoAttach()
700 if (SysBpfObjDetach(prog.attachType, progFd, cgroupFd) < NETSYS_SUCCESS) { in DoDetach()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/canvas/
H A Djs_rendering_context.cpp507 static constexpr char attachType[] = "onAttach"; in GetCanvasCallbackType() local
509 if (strType.compare(attachType) == 0) { in GetCanvasCallbackType()