Lines Matching refs:GLushort
61 static const glw::GLushort data_unorm16_one[] = { 65535 };
62 static const glw::GLushort data_unorm16_zero[] = { 0 };
71 static const glw::GLushort data_uint16_one[] = { 1 };
72 static const glw::GLushort data_uint16_zero[] = { 0 };
79 static const glw::GLushort src_data_r16[] = { 12345 };
83 static const glw::GLushort src_data_rg16[] = { 12345, 54321 };
86 static const glw::GLushort src_data_rgb4[] = { 64832 }; /* 5_6_5: 255, 170, 0 */
87 static const glw::GLushort src_data_rgb5[] = { 64832 };
90 static const glw::GLushort src_data_rgb16[] = { 65535, 32767, 16383 };
92 static const glw::GLushort src_data_rgba4[] = { 64005 }; /* 255, 170, 0, 85 */
93 static const glw::GLushort src_data_rgb5_a1[] = { 64852 };
97 static const glw::GLushort exp_data_rgb10_a2ui[] = { 1023, 256, 511, 3 };
98 static const glw::GLushort src_data_rgba16[] = { 65535, 32767, 16383, 8191 };
125 static const glw::GLushort src_data_r16ui[] = { 32768 };
131 static const glw::GLushort src_data_rg16ui[] = { 32768, 32769 };
137 static const glw::GLushort src_data_rgb16ui[] = { 32768, 32769, 32770 };
143 static const glw::GLushort src_data_rgba16ui[] = { 32768, 32769, 32770, 32771 };
146 static const glw::GLushort src_data_depth_component16[] = { 32768 };
1396 const glw::GLushort* ptr = (const glw::GLushort*)format.m_source_data;
1411 const glw::GLushort* ptr = (const glw::GLushort*)format.m_source_data;
1429 const glw::GLushort* ptr = (const glw::GLushort*)format.m_source_data;
1448 const glw::GLushort r = (glw::GLushort)((*ptr) >> 22);
1449 const glw::GLushort g = ((*ptr) >> 12) & 1023;
1450 const glw::GLushort b = ((*ptr) >> 2) & 1023;
1451 const glw::GLushort a = (*ptr) & 3;
1528 const glw::GLushort* ptr = (const glw::GLushort*)format.m_source_data;
1532 const glw::GLushort val = ptr[i];
1784 convert<glw::GLushort>(out_expected_data_low, stor_output_low);
1785 convert<glw::GLushort>(out_expected_data_top, stor_output_top);
4201 res = isInRange<glw::GLushort>(pointer, expected_data_low, expected_data_top);