| 376 | } |
| 377 | |
| 378 | static BOOLEAN IsImageWithinScreenLimits(INTN Value, INTN ImageDimension, INTN ScreenDimension) |
| 379 | { |
| 380 | return (Value >= 0 && Value + ImageDimension <= ScreenDimension); |
| 381 | } |
| 382 | |
| 383 | static INTN RepositionFixedByCenter(INTN Value, INTN ScreenDimension, INTN DesignScreenDimension) |
| 384 | { |
no outgoing calls
no test coverage detected