Lines Matching refs:equation

288 	deUint32	equation;
298 blendConfigs[0].equation = GL_FUNC_ADD;
299 blendConfigs[1].equation = GL_FUNC_ADD;
300 blendConfigs[2].equation = GL_FUNC_ADD;
301 blendConfigs[3].equation = GL_FUNC_ADD;
313 blendConfigs[4].equation = GL_FUNC_SUBTRACT;
314 blendConfigs[5].equation = GL_FUNC_SUBTRACT;
315 blendConfigs[6].equation = GL_FUNC_SUBTRACT;
316 blendConfigs[7].equation = GL_FUNC_SUBTRACT;
328 blendConfigs[8].equation = GL_FUNC_REVERSE_SUBTRACT;
329 blendConfigs[9].equation = GL_FUNC_REVERSE_SUBTRACT;
330 blendConfigs[10].equation = GL_FUNC_REVERSE_SUBTRACT;
331 blendConfigs[11].equation = GL_FUNC_REVERSE_SUBTRACT;
1087 if (m_blendConfigList[m_blendIteration].equation == GL_FUNC_ADD)
1089 else if (m_blendConfigList[m_blendIteration].equation == GL_FUNC_SUBTRACT)
1091 else if (m_blendConfigList[m_blendIteration].equation == GL_FUNC_REVERSE_SUBTRACT)
1194 gl.blendEquation(m_blendConfigList[m_blendIteration].equation);
1197 std::string equation, src, dst;
1198 if (m_blendConfigList[m_blendIteration].equation == GL_FUNC_ADD)
1199 equation = "GL_FUNC_ADD";
1200 if (m_blendConfigList[m_blendIteration].equation == GL_FUNC_SUBTRACT)
1201 equation = "GL_FUNC_SUBTRACT";
1202 if (m_blendConfigList[m_blendIteration].equation == GL_FUNC_REVERSE_SUBTRACT)
1203 equation = "GL_FUNC_REVERSE_SUBTRACT";
1213 message << "Enabled: equation = " << equation << ", func src = " << src << ", func dst = " << dst;
1608 // resulting in the follolwing blending equation (0.2f, 0.3f, 0.4f 1.0f) + (0.0331048, 0.073239, 0.132868) = (0.521569f, 0.647059f, 0.756863f, 1.0f)