Lines Matching defs:alignment
568 int alignment; // alignment (in bytes)
571 int elementsInRowNoAlign; // row size (in elements) without alignment
897 m_initialPackProperties.alignment = 4;
906 m_initialUnpackProperties.alignment = 4;
927 gl.pixelStorei(GL_PACK_ALIGNMENT, pp.alignment);
932 gl.pixelStorei(GL_UNPACK_ALIGNMENT, up.alignment);
1217 if (elementSize < m_unpackProperties.alignment)
1219 int alignment = m_unpackProperties.alignment;
1220 elementsInRow = (int)(alignment * deFloatCeil(elementSize * elementsInGroup * rowLength / ((float)alignment))) /
2197 if (props.elementSize < props.alignment)
2199 props.elementsInRow = (int)(props.alignment * deFloatCeil(props.elementSize * props.elementsInGroup *
2200 props.rowLength / ((float)props.alignment))) /
3759 { GL_UNPACK_ALIGNMENT, &up.alignment, 1 },
3760 { GL_UNPACK_ALIGNMENT, &up.alignment, 2 },
3761 { GL_UNPACK_ALIGNMENT, &up.alignment, 4 },
3762 { GL_UNPACK_ALIGNMENT, &up.alignment, 8 },
3778 { GL_PACK_ALIGNMENT, &pp.alignment, 1 },
3779 { GL_PACK_ALIGNMENT, &pp.alignment, 2 },
3780 { GL_PACK_ALIGNMENT, &pp.alignment, 4 },
3781 { GL_PACK_ALIGNMENT, &pp.alignment, 8 },