Home | History | Annotate | Download | only in graphics

Lines Matching refs:shaderA

46         @param shaderA  The colors from this shader are seen as the "dst" by the mode
51 public ComposeShader(Shader shaderA, Shader shaderB, Xfermode mode) {
53 mShaderA = shaderA;
56 native_instance = nativeCreate1(shaderA.native_instance, shaderB.native_instance,
60 native_shader = nativePostCreate2(native_instance, shaderA.native_shader,
63 native_shader = nativePostCreate1(native_instance, shaderA.native_shader,
71 @param shaderA The colors from this shader are seen as the "dst" by the mode
75 public ComposeShader(Shader shaderA, Shader shaderB, PorterDuff.Mode mode) {
77 mShaderA = shaderA;
80 native_instance = nativeCreate2(shaderA.native_instance, shaderB.native_instance,
82 native_shader = nativePostCreate2(native_instance, shaderA.native_shader,