| 26 | |
| 27 | template <typename DeleteObjectsFunction> |
| 28 | void deleteObject(DeleteObjectsFunction function, const GLuint id, const bool hasOwnership) |
| 29 | { |
| 30 | if (hasOwnership) |
| 31 | { |
| 32 | function(1, &id); |
| 33 | } |
| 34 | } |
| 35 | |
| 36 | } |
| 37 |
no outgoing calls
no test coverage detected