Home
last modified time | relevance | path

Searched refs:t_value (Results 1 – 2 of 2) sorted by relevance

/third_party/vk-gl-cts/external/openglcts/modules/common/
DglcPixelStorageModesTests.cpp301 const T t_value = (T)d_value; in writeToUnsignedChannel() local
305 ptr[channel] = t_value; in writeToUnsignedChannel()
315 const T t_value = (T)d_value; in writeToSignedChannel() local
319 ptr[channel] = t_value; in writeToSignedChannel()
324 const glw::GLfloat t_value = (glw::GLfloat)col; in writeToFloatChannel() local
328 ptr[channel] = t_value; in writeToFloatChannel()
379 const T t_value = (T)d_value; in write3Channel() local
381 result = (T)((t_value & mask) << off); in write3Channel()
433 const T t_value = (T)d_value; in write4Channel() local
435 result = (T)((t_value & mask) << off); in write4Channel()
[all …]
/third_party/vk-gl-cts/external/openglcts/modules/gl/
Dgl4cCopyImageTests.cpp1656 const T t_value = ptr[channel]; in readBaseTypeFromUnsignedChannel() local
1657 const GLdouble d_value = (GLdouble)t_value; in readBaseTypeFromUnsignedChannel()
1679 const T t_value = ptr[channel]; in readBaseTypeFromSignedChannel() local
1680 const GLdouble d_value = (GLdouble)t_value; in readBaseTypeFromSignedChannel()
1696 const GLfloat t_value = ptr[channel]; in readBaseTypeFromFloatChannel() local
1697 const GLdouble d_value = (GLdouble)t_value; in readBaseTypeFromFloatChannel()
1743 const T t_value = ptr[0]; in read3Channel() local
1771 result = (T)((t_value >> off) & mask); in read3Channel()
1804 const T t_value = ptr[0]; in read4Channel() local
1838 result = (T)((t_value >> off) & mask); in read4Channel()
[all …]