Searched refs:blendEquation (Results 1 - 7 of 7) 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/GuestHost/OpenGL/state_tracker/
H A Dstate_buffer.c78 b->blendEquation = GL_FUNC_ADD_EXT;
79 RESET(bb->blendEquation, ctx->bitid);
411 b->blendEquation = mode;
419 DIRTY(bb->blendEquation, g->neg_bitid);
H A Dstate_bits_globalop.h73 _CRSTATE_BITS_OP_SIZEOF(buffer.blendEquation);
H A Dstate_attrib.c156 a->colorBufferStack[a->colorBufferStackDepth].blendEquation = g->buffer.blendEquation;
573 g->buffer.blendEquation = a->colorBufferStack[a->colorBufferStackDepth].blendEquation;
592 DIRTY(sb->buffer.blendEquation, g->neg_bitid);
H A Dstate_lists.c340 if (CHECKDIRTY(sb->buffer.blendEquation, negbitID))
342 CRSTATE_SET_ENUM(buffer.blendEquation, GL_BLEND_EQUATION_EXT);
/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 120 milliseconds