Searched defs:blendEquation (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/GuestHost/OpenGL/include/state/
H A Dcr_buffer.h39 CRbitvalue blendEquation[CR_MAX_BITARRAY]; member in struct:__anon16170
75 GLenum blendEquation; member in struct:__anon16171
H A Dcr_attrib.h41 GLenum blendEquation; member in struct:__anon16149
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/wined3d/
H A Dstate.c622 int blendEquation = GL_FUNC_ADD; local
634 case WINED3DBLENDOP_ADD : blendEquation = GL_FUNC_ADD; break;
635 case WINED3DBLENDOP_SUBTRACT : blendEquation = GL_FUNC_SUBTRACT; break;
636 case WINED3DBLENDOP_REVSUBTRACT : blendEquation = GL_FUNC_REVERSE_SUBTRACT; break;
637 case WINED3DBLENDOP_MIN : blendEquation = GL_MIN; break;
638 case WINED3DBLENDOP_MAX : blendEquation = GL_MAX; break;
654 TRACE("glBlendEquationSeparateEXT(%x, %x)\n", blendEquation, blendEquationAlpha);
655 GL_EXTCALL(glBlendEquationSeparateEXT(blendEquation, blendEquationAlpha));
658 TRACE("glBlendEquation(%x)\n", blendEquation);
659 GL_EXTCALL(glBlendEquationEXT(blendEquation));
[all...]

Completed in 890 milliseconds