Lines Matching refs:order
128 const Channel* getChannelReadMap (TextureFormat::ChannelOrder order)
146 switch (order)
170 const int* getChannelWriteMap (TextureFormat::ChannelOrder order)
187 switch (order)
235 int getNumUsedChannels (TextureFormat::ChannelOrder order)
237 switch (order)
438 if (type == CHANNELTYPE_LAST && order == CHANNELORDER_LAST)
448 DE_ASSERT(order == RGB || order == RGBA);
455 DE_ASSERT(order == RGB);
461 DE_ASSERT(order == RGBA);
466 DE_ASSERT(order == D || order == DS);
471 DE_ASSERT(order == DS);
479 switch (order)
596 if (m_format.order == TextureFormat::RGBA)
598 else if (m_format.order == TextureFormat::RGB)
623 switch (m_format.order)
634 DE_ASSERT(m_format.order == TextureFormat::DS);
655 const Channel* channelMap = getChannelReadMap(m_format.order);
685 if (m_format.order == TextureFormat::RGBA) return readRGBA8888Int(pixelPtr);
686 else if (m_format.order == TextureFormat::RGB) return readRGB888Int(pixelPtr);
703 switch (m_format.order)
714 DE_ASSERT(m_format.order == TextureFormat::DS);
729 const Channel* channelMap = getChannelReadMap(m_format.order);
776 DE_ASSERT(m_format.order == TextureFormat::DS || m_format.order == TextureFormat::D);
781 switch (m_format.order)
792 DE_ASSERT(m_format.order == TextureFormat::DS);
796 DE_ASSERT(m_format.order == TextureFormat::D || m_format.order == TextureFormat::DS);
816 switch (m_format.order)
827 DE_ASSERT(m_format.order == TextureFormat::DS);
832 if (m_format.order == TextureFormat::S)
836 DE_ASSERT(m_format.order == TextureFormat::DS);
853 if (m_format.order == TextureFormat::RGBA)
859 else if (m_format.order == TextureFormat::RGB)
898 switch (m_format.order)
909 DE_ASSERT(m_format.order == TextureFormat::DS);
915 if (m_format.order == TextureFormat::D)
925 int numChannels = getNumUsedChannels(m_format.order);
926 const int* map = getChannelWriteMap(m_format.order);
952 if (m_format.order
953 else if (m_format.order == TextureFormat::RGB) { writeRGB888Int(pixelPtr, color); return; }
969 switch (m_format.order)
980 DE_ASSERT(m_format.order == TextureFormat::DS);
988 int numChannels = getNumUsedChannels(m_format.order);
989 const int* map = getChannelWriteMap(m_format.order);
1016 switch (m_format.order)
1026 DE_ASSERT(m_format.order == TextureFormat::DS);
1031 DE_ASSERT(m_format.order == TextureFormat::D || m_format.order == TextureFormat::DS);
1053 switch (m_format.order)
1063 DE_ASSERT(m_format.order == TextureFormat::DS);
1068 if (m_format.order == TextureFormat::S)
1072 DE_ASSERT(m_format.order == TextureFormat::DS);
1163 return format.order == TextureFormat::sRGB || format.order == TextureFormat::sRGBA;
1170 if (format.order == TextureFormat::D)
1175 else if (format.order == TextureFormat::DS)
2212 DE_ASSERT(src.getFormat().order == TextureFormat::D || src.getFormat().order == TextureFormat::DS);
3128 const int sampleIndices[4] = { 2, 3, 1, 0 }; // \note Gather returns the samples in a non-obvious order.
3139 DE_ASSERT(m_levels[0][0].getFormat().order == TextureFormat::D || m_levels[0][0].getFormat().order == TextureFormat::DS);
3585 std::ostream& operator<< (std::ostream& str, TextureFormat::ChannelOrder order)
3587 switch (order)
3601 default: return str << "UNKNOWN(" << (int)order << ")";
3648 return str << format.order << ", " << format.type << "";