| 60 | } |
| 61 | |
| 62 | int RoundToAlignment(int offset, int alignment) |
| 63 | { |
| 64 | int remainder = offset % alignment; |
| 65 | if (remainder == 0) |
| 66 | return offset; |
| 67 | else |
| 68 | return offset + (alignment - remainder); |
| 69 | } |
| 70 | |
| 71 | int GetMaxResourceBindings(BindableResourceType type) |
| 72 | { |
no outgoing calls
no test coverage detected