| 200 | } |
| 201 | |
| 202 | bool GraphEncodeContext_Finished(const GraphEncodeContext *ctx) { |
| 203 | ASSERT(ctx); |
| 204 | return ctx->keys_processed == GraphEncodeContext_GetKeyCount(ctx); |
| 205 | } |
| 206 | |
| 207 | void GraphEncodeContext_IncreaseProcessedKeyCount(GraphEncodeContext *ctx) { |
| 208 | ASSERT(ctx); |
no test coverage detected