Home | History | Annotate | Download | only in gl

Lines Matching refs:wrapY

296             auto wrapY = wrap_mode_to_gl_wrap(state.wrapModeY(), fGpu->glCaps());
302 GR_GL_CALL(fGpu->glInterface(), SamplerParameteri(s, GR_GL_TEXTURE_WRAP_T, wrapY));
338 int wrapY = static_cast<int>(state.wrapModeY());
339 SkASSERT(wrapY >= 0 && wrapY < 4);
340 int idx = 16 * filter + 4 * wrapX + wrapY;