Lines Matching refs:blendState
69 ctx->state.blendState.color[0] = MIN2(MAX2(red * 255, 0.0f), 255.0f);
70 ctx->state.blendState.color[1] = MIN2(MAX2(green * 255, 0.0f), 255.0f);
71 ctx->state.blendState.color[2] = MIN2(MAX2(blue * 255, 0.0f), 255.0f);
72 ctx->state.blendState.color[3] = MIN2(MAX2(alpha * 255, 0.0f), 255.0f);
85 ctx->state.blendState.ce = (GGLBlendState::GGLBlendFunc)(modeRGB - GL_FUNC_ADD);
86 ctx->state.blendState.ae = (GGLBlendState::GGLBlendFunc)(modeAlpha - GL_FUNC_ADD);
138 ctx->state.blendState.scf = GLBlendFactor(srcRGB);
139 ctx->state.blendState.saf = GLBlendFactor(srcAlpha);
140 ctx->state.blendState.dcf = GLBlendFactor(dstRGB);
141 ctx->state.blendState.daf = GLBlendFactor(dstAlpha);
152 changed |= ctx->state.blendState.enable ^ enable;
153 ctx->state.blendState.enable = enable;