Home | History | Annotate | Download | only in win

Lines Matching refs:appendAttr

293     auto appendAttr = [](SkTDArray<int>& attrs, int attr, int value) {
299 appendAttr(iAttrs, SK_WGL_DRAW_TO_WINDOW, TRUE);
300 appendAttr(iAttrs, SK_WGL_DOUBLE_BUFFER, (doubleBuffered ? TRUE : FALSE));
301 appendAttr(iAttrs, SK_WGL_ACCELERATION, SK_WGL_FULL_ACCELERATION);
302 appendAttr(iAttrs, SK_WGL_SUPPORT_OPENGL, TRUE);
304 appendAttr(iAttrs, SK_WGL_RED_BITS, 10);
305 appendAttr(iAttrs, SK_WGL_GREEN_BITS, 10);
306 appendAttr(iAttrs, SK_WGL_BLUE_BITS, 10);
307 appendAttr(iAttrs, SK_WGL_ALPHA_BITS, 2);
309 appendAttr(iAttrs, SK_WGL_COLOR_BITS, 24);
310 appendAttr(iAttrs, SK_WGL_ALPHA_BITS, 8);
312 appendAttr(iAttrs, SK_WGL_STENCIL_BITS, 8);
320 appendAttr(msaaIAttrs, SK_WGL_SAMPLE_BUFFERS, TRUE);
321 appendAttr(msaaIAttrs, SK_WGL_SAMPLES, msaaSampleCount);
322 appendAttr(msaaIAttrs, 0, 0);
333 appendAttr(iAttrs, 0, 0);