()
| 132 | } |
| 133 | |
| 134 | protected void readSetColourMapEntries() |
| 135 | { |
| 136 | is.skip(1); |
| 137 | int firstColour = is.readU16(); |
| 138 | int nColours = is.readU16(); |
| 139 | int[] rgbs = new int[nColours * 3]; |
| 140 | for (int i = 0; i < nColours * 3; i++) |
| 141 | rgbs[i] = is.readU16(); |
| 142 | handler.setColourMapEntries(firstColour, nColours, rgbs); |
| 143 | } |
| 144 | |
| 145 | protected void readBell() |
| 146 | { |
no test coverage detected