Home
last modified time | relevance | path

Searched refs:glBlendFuncSeparate (Results 1 - 25 of 56) sorted by relevance

123

/third_party/vk-gl-cts/modules/gles2/functional/
H A Des2fNegativeFragmentApiTests.cpp156 ES2F_ADD_API_CASE(blend_func_separate, "Invalid glBlendFuncSeparate() usage", in init()
159 glBlendFuncSeparate(-1, GL_ONE, GL_SRC_COLOR, GL_ONE_MINUS_SRC_COLOR); in init()
161 glBlendFuncSeparate(GL_ZERO, -1, GL_SRC_COLOR, GL_ONE_MINUS_SRC_COLOR); in init()
163 glBlendFuncSeparate(GL_ZERO, GL_ONE, -1, GL_ONE_MINUS_SRC_COLOR); in init()
165 glBlendFuncSeparate(GL_ZERO, GL_ONE, GL_SRC_COLOR, -1); in init()
H A Des2fBlendTests.cpp232 GLU_CHECK_CALL(glBlendFuncSeparate(paramSet.srcFuncRGB, paramSet.dstFuncRGB, paramSet.srcFuncAlpha, paramSet.dstFuncAlpha)); in iterate()
H A Des2fIntegerStateQueryTests.cpp1452 glBlendFuncSeparate(func, GL_ZERO, GL_ZERO, GL_ZERO); in SetBlendFunc()
1456 glBlendFuncSeparate(GL_ZERO, func, GL_ZERO, GL_ZERO); in SetBlendFunc()
1460 glBlendFuncSeparate(GL_ZERO, GL_ZERO, func, GL_ZERO); in SetBlendFunc()
1464 glBlendFuncSeparate(GL_ZERO, GL_ZERO, GL_ZERO, func); in SetBlendFunc()
H A Des2fRandomFragmentOpTests.cpp194 wrapper.glBlendFuncSeparate(state.blendRGBState.srcFunc, state.blendRGBState.dstFunc, state.blendAState.srcFunc, state.blendAState.dstFunc);
/third_party/vk-gl-cts/modules/gles3/functional/
H A Des3fNegativeFragmentApiTests.cpp175 ES3F_ADD_API_CASE(blend_func_separate, "Invalid glBlendFuncSeparate() usage", in init()
178 glBlendFuncSeparate(-1, GL_ONE, GL_SRC_COLOR, GL_ONE_MINUS_SRC_COLOR); in init()
180 glBlendFuncSeparate(GL_ZERO, -1, GL_SRC_COLOR, GL_ONE_MINUS_SRC_COLOR); in init()
182 glBlendFuncSeparate(GL_ZERO, GL_ONE, -1, GL_ONE_MINUS_SRC_COLOR); in init()
184 glBlendFuncSeparate(GL_ZERO, GL_ONE, GL_SRC_COLOR, -1); in init()
H A Des3fIndexedStateQueryTests.cpp787 gl.glBlendFuncSeparate(GL_SRC_COLOR, GL_ONE_MINUS_SRC_ALPHA, GL_DST_COLOR, GL_ONE_MINUS_DST_ALPHA); in iterate()
864 gl.glBlendFuncSeparate(GL_SRC_COLOR, GL_ONE_MINUS_SRC_ALPHA, GL_DST_COLOR, GL_ONE_MINUS_DST_ALPHA); in iterate()
872 gl.glBlendFuncSeparate(GL_SRC_COLOR, GL_ONE_MINUS_SRC_ALPHA, GL_DST_COLOR, GL_ONE_MINUS_DST_ALPHA); in iterate()
H A Des3fRandomFragmentOpTests.cpp194 wrapper.glBlendFuncSeparate(state.blendRGBState.srcFunc, state.blendRGBState.dstFunc, state.blendAState.srcFunc, state.blendAState.dstFunc);
H A Des3fBlendTests.cpp280 GLU_CHECK_CALL(glBlendFuncSeparate(paramSet.srcFuncRGB, paramSet.dstFuncRGB, paramSet.srcFuncAlpha, paramSet.dstFuncAlpha)); in iterate()
H A Des3fIntegerStateQueryTests.cpp1765 glBlendFuncSeparate(func, GL_ZERO, GL_ZERO, GL_ZERO); in SetBlendFunc()
1769 glBlendFuncSeparate(GL_ZERO, func, GL_ZERO, GL_ZERO); in SetBlendFunc()
1773 glBlendFuncSeparate(GL_ZERO, GL_ZERO, func, GL_ZERO); in SetBlendFunc()
1777 glBlendFuncSeparate(GL_ZERO, GL_ZERO, GL_ZERO, func); in SetBlendFunc()
/third_party/vk-gl-cts/modules/gles31/functional/
H A Des31fNegativeFragmentApiTests.cpp224 ctx.glBlendFuncSeparate(-1, GL_ONE, GL_SRC_COLOR, GL_ONE_MINUS_SRC_COLOR); in blend_func_separate()
226 ctx.glBlendFuncSeparate(GL_ZERO, -1, GL_SRC_COLOR, GL_ONE_MINUS_SRC_COLOR); in blend_func_separate()
228 ctx.glBlendFuncSeparate(GL_ZERO, GL_ONE, -1, GL_ONE_MINUS_SRC_COLOR); in blend_func_separate()
230 ctx.glBlendFuncSeparate(GL_ZERO, GL_ONE, GL_SRC_COLOR, -1); in blend_func_separate()
498 {blend_func_separate, "blend_func_separate", "Invalid glBlendFuncSeparate() usage" }, in getNegativeFragmentApiTestFunctions()
H A Des31fIndexedStateQueryTests.cpp1023 gl.glBlendFuncSeparate(GL_SRC_COLOR, GL_ONE_MINUS_SRC_ALPHA, GL_DST_COLOR, GL_ONE_MINUS_DST_ALPHA); in iterate()
1100 gl.glBlendFuncSeparate(GL_SRC_COLOR, GL_ONE_MINUS_SRC_ALPHA, GL_DST_COLOR, GL_ONE_MINUS_DST_ALPHA); in iterate()
1108 gl.glBlendFuncSeparate(GL_SRC_COLOR, GL_ONE_MINUS_SRC_ALPHA, GL_DST_COLOR, GL_ONE_MINUS_DST_ALPHA); in iterate()
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/
H A DBlendFuncExtendedTest.cpp182 glBlendFuncSeparate(GL_SRC1_COLOR_EXT, GL_SRC_ALPHA, GL_ONE_MINUS_SRC1_COLOR_EXT, in drawTest()
199 glBlendFuncSeparate(GL_ONE_MINUS_SRC1_COLOR_EXT, GL_ONE_MINUS_SRC_ALPHA, in drawTest()
/third_party/skia/third_party/externals/imgui/backends/
H A Dimgui_impl_opengl3.cpp298 glBlendFuncSeparate(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA, GL_ONE, GL_ONE_MINUS_SRC_ALPHA); in ImGui_ImplOpenGL3_SetupRenderState()
484 glBlendFuncSeparate(last_blend_src_rgb, last_blend_dst_rgb, last_blend_src_alpha, last_blend_dst_alpha); in ImGui_ImplOpenGL3_RenderDrawData()
H A Dimgui_impl_opengl3_loader.h237 GLAPI void APIENTRY glBlendFuncSeparate (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha);
507 #define glBlendFuncSeparate imgl3wProcs.gl.BlendFuncSeparate macro
693 "glBlendFuncSeparate",
/third_party/mesa3d/src/intel/tools/imgui/
H A Dimgui_impl_opengl3.cpp220 glBlendFuncSeparate(last_blend_src_rgb, last_blend_dst_rgb, last_blend_src_alpha, last_blend_dst_alpha); in ImGui_ImplOpenGL3_RenderDrawData()
/third_party/vk-gl-cts/framework/opengl/simplereference/
H A DsglrContextWrapper.cpp334 void ContextWrapper::glBlendFuncSeparate (deUint32 srcRGB, deUint32 dstRGB, deUint32 srcAlpha, deUint32 dstAlpha) in glBlendFuncSeparate() function in sglr::ContextWrapper
H A DsglrContextWrapper.hpp59 void glBlendFuncSeparate (deUint32 srcRGB, deUint32 dstRGB, deUint32 srcAlpha, deUint32 dstAlpha);
H A DsglrGLContext.cpp572 m_wrapper->glBlendFuncSeparate(srcRGB, dstRGB, srcAlpha, dstAlpha); in blendFuncSeparate()
/third_party/openGLES/api/GLSC2/
H A Dglsc2.h335 GL_APICALL void GL_APIENTRY glBlendFuncSeparate (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha);
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libGLESv2/
H A DlibGLESv2.hpp56 void (GL_APIENTRY *glBlendFuncSeparate)(GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); member in LibGLESv2exports
H A Dentry_points.cpp93 GL_APICALL void GL_APIENTRY glBlendFuncSeparate(GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha) in glBlendFuncSeparate() function
1557 this->glBlendFuncSeparate = gl::BlendFuncSeparate; in LibGLESv2exports()
/third_party/skia/third_party/externals/opengl-registry/api/GLSC2/
H A Dglsc2.h356 GL_APICALL void GL_APIENTRY glBlendFuncSeparate (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha);
/third_party/glfw/deps/glad/
H A Dgles2.h1038 #define glBlendFuncSeparate glad_glBlendFuncSeparate macro
1498 glad_glBlendFuncSeparate = (PFNGLBLENDFUNCSEPARATEPROC) load(userptr, "glBlendFuncSeparate"); in glad_gl_load_GL_ES_VERSION_2_0()
/third_party/mesa3d/include/GLES2/
H A Dgl2.h537 GL_APICALL void GL_APIENTRY glBlendFuncSeparate (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha);
/third_party/openGLES/api/GLES2/
H A Dgl2.h518 GL_APICALL void GL_APIENTRY glBlendFuncSeparate (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha);

Completed in 71 milliseconds

123