| 290 | void writeToStream(Stream &s); |
| 291 | |
| 292 | virtual void writeBits(S32 bitCount, const void *bitPtr) |
| 293 | { |
| 294 | validate((bitCount >> 3) + 1); // Add a little safety. |
| 295 | BitStream::writeBits(bitCount, bitPtr); |
| 296 | } |
| 297 | |
| 298 | virtual bool writeFlag(bool val) |
| 299 | { |
nothing calls this directly
no test coverage detected