Home
last modified time | relevance | path

Searched refs:dst_fact (Results 1 – 4 of 4) sorted by relevance

/dports/games/py-fife/fifengine-0.4.2/engine/core/video/opengl/
H A Drenderbackendopengl.cpp703 GLenum dst_fact; in changeBlending() local
719 case 0 : dst_fact = GL_ZERO; break; in changeBlending()
720 case 1 : dst_fact = GL_ONE; break; in changeBlending()
721 case 2 : dst_fact = GL_SRC_COLOR; break; in changeBlending()
722 case 3 : dst_fact = GL_ONE_MINUS_SRC_COLOR; break; in changeBlending()
723 case 4 : dst_fact = GL_SRC_ALPHA; break; in changeBlending()
724 case 5 : dst_fact = GL_ONE_MINUS_SRC_ALPHA; break; in changeBlending()
725 case 6 : dst_fact = GL_DST_ALPHA; break; in changeBlending()
728 default : dst_fact = GL_SRC_ALPHA; break; in changeBlending()
733 m_state.blend_dst = dst_fact; in changeBlending()
[all …]
/dports/games/retroarch/RetroArch-1.9.7/wii/libogc/include/ogc/
H A Dgx.h2838 void GX_SetBlendMode(u8 type,u8 src_fact,u8 dst_fact,u8 op);
3823 void GX_PokeBlendMode(u8 type,u8 src_fact,u8 dst_fact,u8 op);
/dports/games/retroarch/RetroArch-1.9.7/wii/libogc/libogc/
H A Dgx.c3644 void GX_SetBlendMode(u8 type,u8 src_fact,u8 dst_fact,u8 op) in GX_SetBlendMode() argument
3656 __gx->peCMode0 = (__gx->peCMode0&~0xE0)|(_SHIFTL(dst_fact,5,3)); in GX_SetBlendMode()
4372 void GX_PokeBlendMode(u8 type,u8 src_fact,u8 dst_fact,u8 op) in GX_PokeBlendMode() argument
4386 regval = (regval&~0xE0)|(_SHIFTL(dst_fact,5,3)); in GX_PokeBlendMode()
/dports/lang/fpc-source/fpc-3.2.2/packages/libogcfpc/src/ogc/
H A Dgx.inc1078 procedure GX_SetBlendMode(type_, src_fact, dst_fact, op: cuint8); cdecl; external;
1610 * \fn void GX_PokeBlendMode(u8 type,u8 src_fact,u8 dst_fact,u8 op)
1616 …sp;<i>dst_pix_clr</i> = <i>src_pix_clr</i> * \a src_fact + <i>dst_pix_clr</i> * \a dst_fact<br><br>
1622 * Note that \a src_fact and \a dst_fact are not part of the equation.
1624 …* \note \a dst_fact can be used only when the frame buffer has <tt>GX_PF_RGBA6_Z24</tt> as the pix…
1632 …* \param[in] dst_fact destination \ref blendfactor; the current frame buffer pixel color is multip…
1636 procedure GX_PokeBlendMode(type_, src_fact, dst_fact, op: cuint8); cdecl; external;