Lines Matching defs:channel

156 	void writeChannel(glw::GLubyte *p, int channel, glw::GLdouble col);
158 void writeToUnsignedChannel(glw::GLubyte *p, int channel, glw::GLdouble col);
160 void writeToSignedChannel(glw::GLubyte *p, int channel, glw::GLdouble col);
161 void writeToFloatChannel(glw::GLubyte *p, int channel, glw::GLdouble col);
162 void writeToHalfFloatChannel(glw::GLubyte *p, int channel, glw::GLdouble col);
166 void write3Channel(glw::GLubyte *p, int channel, glw::GLdouble col);
172 void write4Channel(glw::GLubyte *p, int channel, glw::GLdouble col);
173 void write11F_11F_10F_Channel(glw::GLubyte *p, int channel, glw::GLdouble col);
246 void TexImageUtils::writeChannel(glw::GLubyte *p, int channel, glw::GLdouble col)
251 writeToUnsignedChannel<glw::GLubyte>(p, channel, col);
254 writeToSignedChannel<glw::GLbyte>(p, channel, col);
257 writeToUnsignedChannel<glw::GLushort>(p, channel, col);
260 write3Channel<glw::GLushort, 5, 6, 5, 11, 5, 0>(p, channel, col);
263 writeToSignedChannel<glw::GLshort>(p, channel, col);
266 writeToUnsignedChannel<glw::GLuint>(p, channel, col);
269 write4Channel<glw::GLuint, 2, 10, 10, 10, 30, 20, 10, 0>(p, 3 - channel, col);
272 write11F_11F_10F_Channel(p, channel, col);
275 write4Channel<glw::GLushort, 4, 4, 4, 4, 12, 8, 4, 0>(p, channel, col);
278 write4Channel<glw::GLushort, 5, 5, 5, 1, 11, 6, 1, 0>(p, channel, col);
281 writeToSignedChannel<glw::GLint>(p, channel, col);
284 writeToHalfFloatChannel(p, channel, col);
287 writeToFloatChannel(p, channel, col);
295 void TexImageUtils::writeToUnsignedChannel(glw::GLubyte *p, int channel, glw::GLdouble col)
305 ptr[channel] = t_value;
309 void TexImageUtils::writeToSignedChannel(glw::GLubyte *p, int channel, glw::GLdouble col)
319 ptr[channel] = t_value;
322 void TexImageUtils::writeToFloatChannel(glw::GLubyte *p, int channel, glw::GLdouble col)
328 ptr[channel] = t_value;
331 void TexImageUtils::writeToHalfFloatChannel(glw::GLubyte *p, int channel, glw::GLdouble col)
337 ptr[channel] = val.bits();
343 void TexImageUtils::write3Channel(glw::GLubyte *p, int channel, glw::GLdouble col)
355 switch (channel)
373 TCU_FAIL("Invalid channel");
391 void TexImageUtils::write4Channel(glw::GLubyte *p, int channel, glw::GLdouble col)
404 switch (channel)
427 TCU_FAIL("Invalid channel");
440 void TexImageUtils::write11F_11F_10F_Channel(glw::GLubyte *p, int channel, glw::GLdouble col)
444 switch (channel)
471 TCU_FAIL("Invalid channel");