Lines Matching refs:blend
142 SDL_BlendMode blend; member
950 const SDL_BlendMode blend = cmd->data.draw.blend; in SetDrawState() local
1047 if (blend != data->drawstate.blend) { in SetDrawState()
1048 if (blend == SDL_BLENDMODE_NONE) { in SetDrawState()
1052 data->glBlendFuncSeparate(GetBlendFunc(SDL_GetBlendModeSrcColorFactor(blend)), in SetDrawState()
1053 GetBlendFunc(SDL_GetBlendModeDstColorFactor(blend)), in SetDrawState()
1054 GetBlendFunc(SDL_GetBlendModeSrcAlphaFactor(blend)), in SetDrawState()
1055 GetBlendFunc(SDL_GetBlendModeDstAlphaFactor(blend))); in SetDrawState()
1056 data->glBlendEquationSeparate(GetBlendEquation(SDL_GetBlendModeColorOperation(blend)), in SetDrawState()
1057 GetBlendEquation(SDL_GetBlendModeAlphaOperation(blend))); in SetDrawState()
1059 data->drawstate.blend = blend; in SetDrawState()
2132 data->drawstate.blend = SDL_BLENDMODE_INVALID; in GLES2_CreateRenderer()