| 212 | uint2 get_screen_dimensions() {return uint2{1280, 720};} |
| 213 | |
| 214 | uint64_t CheckEid ( TestObjectFoo & foo, char * const name, Context * context, LineInfoArg * at ) { |
| 215 | if (!name) context->throw_error_at(at, "invalid id"); |
| 216 | return hash_function(*context, name) + foo.fooData; |
| 217 | } |
| 218 | |
| 219 | uint64_t CheckEidHint ( TestObjectFoo & foo, char * const name, uint64_t hashHint, Context * context, LineInfoArg * at ) { |
| 220 | if (!name) context->throw_error_at(at, "invalid id"); |
nothing calls this directly
no test coverage detected