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

/vbox/src/VBox/Additions/WINNT/Graphics/Wine/wined3d/
H A Dstate.c623 int blendEquationAlpha = GL_FUNC_ADD; local
644 case WINED3DBLENDOP_ADD : blendEquationAlpha = GL_FUNC_ADD; break;
645 case WINED3DBLENDOP_SUBTRACT : blendEquationAlpha = GL_FUNC_SUBTRACT; break;
646 case WINED3DBLENDOP_REVSUBTRACT : blendEquationAlpha = GL_FUNC_REVERSE_SUBTRACT; break;
647 case WINED3DBLENDOP_MIN : blendEquationAlpha = GL_MIN; break;
648 case WINED3DBLENDOP_MAX : blendEquationAlpha = GL_MAX; break;
654 TRACE("glBlendEquationSeparateEXT(%x, %x)\n", blendEquation, blendEquationAlpha);
655 GL_EXTCALL(glBlendEquationSeparateEXT(blendEquation, blendEquationAlpha));

Completed in 65 milliseconds