| 152 | } |
| 153 | |
| 154 | static aiColor3D ReadColor(StreamReaderLE *stream) { |
| 155 | float r = stream->GetF4(); |
| 156 | float g = stream->GetF4(); |
| 157 | float b = stream->GetF4(); |
| 158 | stream->GetU4(); // Colors have an unused(?) 4th component. |
| 159 | return aiColor3D(r, g, b); |
| 160 | } |
| 161 | |
| 162 | static void UnknownChunk(StreamReaderLE * /*stream*/, const SIBChunk &chunk) { |
| 163 | char temp[4] = { |
no test coverage detected