| 174 | } |
| 175 | |
| 176 | void DRLG_RectTrans(int x1, int y1, int x2, int y2) |
| 177 | { |
| 178 | int i, j; |
| 179 | |
| 180 | for (j = y1; j <= y2; j++) { |
| 181 | for (i = x1; i <= x2; i++) { |
| 182 | dTransVal[i][j] = TransVal; |
| 183 | } |
| 184 | } |
| 185 | TransVal++; |
| 186 | } |
| 187 | |
| 188 | void DRLG_CopyTrans(int sx, int sy, int dx, int dy) |
| 189 | { |
no outgoing calls
no test coverage detected