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

  /external/chromium_org/cc/output/
shader.cc 708 vec4 texColor = TextureLookup(s_texture, v_texCoord);
709 gl_FragColor = texColor * alpha;
724 vec4 texColor = TextureLookup(s_texture, v_texCoord);
725 float nonZeroAlpha = max(texColor.a, 0.00001);
726 texColor = vec4(texColor.rgb / nonZeroAlpha, nonZeroAlpha);
727 texColor = colorMatrix * texColor + colorOffset;
728 texColor.rgb *= texColor.a
    [all...]
  /external/chromium_org/gpu/tools/compositor_model_bench/
shaders.cc 199 vec4 texColor = texture2D(s_texture,
201 gl_FragColor = vec4(texColor.x,
202 texColor.y,
203 texColor.z,
204 texColor.w) * alpha;
216 vec4 texColor = texture2D(s_texture, v_texCoord);
217 gl_FragColor = texColor * alpha;

Completed in 43 milliseconds