Home | History | Annotate | Download | only in gdi

Lines Matching full:rgba

432 /* Write a horizontal span of RGBA color pixels with a boolean mask. */
439 const GLubyte (*rgba)[4] = (const GLubyte (*)[4])values;
460 RGB(rgba[i][RCOMP], rgba[i][GCOMP], rgba[i][BCOMP]));
465 RGB(rgba[i][RCOMP], rgba[i][GCOMP], rgba[i][BCOMP]));
482 c.r=rgba[i][RCOMP];
483 c.g=rgba[i][GCOMP];
484 c.b=rgba[i][BCOMP];
485 c.a=rgba[i][ACOMP];
494 c.r=rgba[i][RCOMP];
495 c.g=rgba[i][GCOMP];
496 c.b=rgba[i][BCOMP];
497 c.a=rgba[i][ACOMP];
514 /* Write an array of RGBA pixels with a boolean mask. */
522 const GLubyte (*rgba)[4] = (const GLubyte (*)[4])values;
529 RGB(rgba[i][RCOMP], rgba[i][GCOMP],
530 rgba[i][BCOMP]));
541 GLubyte (*rgba)[4] = (GLubyte (*)[4])values;
548 rgba[i][RCOMP] = GetRValue(Color);
549 rgba[i][GCOMP] = GetGValue(Color);
550 rgba[i][BCOMP] = GetBValue(Color);
551 rgba[i][ACOMP] = 255;
562 GLubyte (*rgba)[4] = (GLubyte (*)[4])values;
569 rgba[i][RCOMP] = GetRValue(Color);
570 rgba[i][GCOMP] = GetGValue(Color);
571 rgba[i][BCOMP] = GetBValue(Color);
572 rgba[i][ACOMP] = 255;
586 /* Write a horizontal span of RGBA color pixels with a boolean mask. */
593 const GLubyte (*rgba)[4] = (const GLubyte (*)[4])values;
605 lpdw[i] = BGR32(rgbargba[i][GCOMP],
606 rgba[i][BCOMP]);
610 *lpdw++ = BGR32(rgba[i][RCOMP], rgba[i][GCOMP],
611 rgba[i][BCOMP]);
616 /* Write an array of RGBA pixels with a boolean mask. */
623 const GLubyte (*rgba)[4] = (const GLubyte (*)[4])values;
629 rgba[i][RCOMP], rgba[i][GCOMP], rgba[i][BCOMP]);
639 GLubyte (*rgba)[4] = (GLubyte (*)[4])values;
649 rgba[i][RCOMP] = (GLubyte)((pixel & 0x00ff0000) >> 16);
650 rgba[i][GCOMP] = (GLubyte)((pixel & 0x0000ff00) >> 8);
651 rgba[i][BCOMP] = (GLubyte)(pixel & 0x000000ff);
652 rgba[i][ACOMP] = 255;
663 GLubyte (*rgba)[4] = (GLubyte (*)[4])values;
673 rgba[i][RCOMP] = (GLubyte)((pixel & 0x00ff0000) >> 16);
674 rgba[i][GCOMP] = (GLubyte)((pixel & 0x0000ff00) >> 8);
675 rgba[i][BCOMP] = (GLubyte)(pixel & 0x000000ff);
676 rgba[i][ACOMP] = 255;
691 /* Write a horizontal span of RGBA color pixels with a boolean mask. */
698 const GLubyte (*rgba)[4] = (const GLubyte (*)[4])values;
710 lpb[3*i] = rgba[i][BCOMP];
711 lpb[3*i+1] = rgba[i][GCOMP];
712 lpb[3*i+2] = rgba[i][RCOMP];
717 *lpb++ = rgba[i][BCOMP];
718 *lpb++ = rgba[i][GCOMP];
719 *lpb++ = rgba[i][RCOMP];
725 /* Write an array of RGBA pixels with a boolean mask. */
732 const GLubyte (*rgba)[4] = (const GLubyte (*)[4])values;
738 rgba[i][RCOMP], rgba[i][GCOMP], rgba[i][BCOMP]);
748 GLubyte (*rgba)[4] = (GLubyte (*)[4])values;
756 rgba[i][RCOMP] = lpb[3*i+2];
757 rgba[i][GCOMP] = lpb[3*i+1];
758 rgba[i][BCOMP] = lpb[3*i];
759 rgba[i][ACOMP] = 255;
770 GLubyte (*rgba)[4] = (GLubyte (*)[4])values;
778 rgba[i][RCOMP] = lpb[3*i+2];
779 rgba[i][GCOMP] = lpb[3*i+1];
780 rgba[i][BCOMP] = lpb[3*i];
781 rgba[i][ACOMP] = 255;
796 /* Write a horizontal span of RGBA color pixels with a boolean mask. */
803 const GLubyte (*rgba)[4] = (const GLubyte (*)[4])values;
815 lpw[i] = BGR16(rgba[i][RCOMP], rgba[i][GCOMP],
816 rgba[i][BCOMP]);
820 *lpw++ = BGR16(rgba[i][RCOMP], rgba[i][GCOMP],
821 rgba[i][BCOMP]);
827 /* Write an array of RGBA pixels with a boolean mask. */
834 const GLubyte (*rgba)[4] = (const GLubyte (*)[4])values;
841 rgba[i][RCOMP], rgba[i][GCOMP], rgba[i][BCOMP]);
851 GLubyte (*rgba)[4] = (GLubyte (*)[4])values;
861 rgba[i][RCOMP] = (pixel & 0x7c00) >> 7;
862 rgba[i][GCOMP] = (pixel & 0x03e0) >> 2;
863 rgba[i][BCOMP] = (pixel & 0x001f) << 3;
864 rgba[i][ACOMP] = 255;
875 GLubyte (*rgba)[4] = (GLubyte (*)[4])values;
885 rgba[i][RCOMP] = (pixel & 0x7c00) >> 7;
886 rgba[i][GCOMP] = (pixel & 0x03e0) >> 2;
887 rgba[i][BCOMP] = (pixel & 0x001f) << 3;
888 rgba[i][ACOMP] = 255;