HomeSort by relevance Sort by last modified time
    Searched refs:positiveNormalizedValue (Results 1 - 2 of 2) sorted by null

  /external/deqp/modules/gles2/functional/
es2fDefaultVertexAttributeTests.cpp 345 buf << " highp " << vectorType << " positiveNormalizedValue = (normalizedValue + " << vectorType << "(1.0)) / 2.0;\n";
347 buf << " highp " << vectorType << " positiveNormalizedValue = normalizedValue;\n";
350 buf << " v_color = vec4(positiveNormalizedValue, 0.0, 0.0, 1.0);\n";
352 buf << " v_color = vec4(positiveNormalizedValue.xy, 0.0, 1.0);\n";
354 buf << " v_color = vec4(positiveNormalizedValue.xyz, 1.0);\n";
356 buf << " v_color = vec4((positiveNormalizedValue.xy + positiveNormalizedValue.zz) / 2.0, positiveNormalizedValue.w, 1.0);\n";
404 const tcu::Vec4 positiveNormalizedValue = ((m_useNegativeValues) ? ((normalizedValue + tcu::Vec4(1.0f)) / 2.0f) : (normalizedValue));
408 return tcu::Vec4(positiveNormalizedValue.x(), 0.0f, 0.0f, 1.0f)
    [all...]
  /external/deqp/modules/gles3/functional/
es3fDefaultVertexAttributeTests.cpp 422 buf << " highp " << vectorType << " positiveNormalizedValue = (normalizedValue + " << vectorType << "(1.0)) / 2.0;\n";
424 buf << " highp " << vectorType << " positiveNormalizedValue = normalizedValue;\n";
427 buf << " v_color = vec4(positiveNormalizedValue, 0.0, 0.0, 1.0);\n";
429 buf << " v_color = vec4(positiveNormalizedValue.xy, 0.0, 1.0);\n";
431 buf << " v_color = vec4(positiveNormalizedValue.xyz, 1.0);\n";
433 buf << " v_color = vec4((positiveNormalizedValue.xy + positiveNormalizedValue.zz) / 2.0, positiveNormalizedValue.w, 1.0);\n";
481 const tcu::Vec4 positiveNormalizedValue = ((m_useNegativeValues) ? ((normalizedValue + tcu::Vec4(1.0f)) / 2.0f) : (normalizedValue));
485 return tcu::Vec4(positiveNormalizedValue.x(), 0.0f, 0.0f, 1.0f)
    [all...]

Completed in 1804 milliseconds