diff options
author | Mikhail Burakov <mburakov@mailbox.org> | 2023-03-24 07:47:29 +0100 |
---|---|---|
committer | Mikhail Burakov <mburakov@mailbox.org> | 2023-03-24 07:47:29 +0100 |
commit | c26b6ef574fe2fdab1d1cd8cd4bce8fb1645e2f7 (patch) | |
tree | 6896754bcf3ed8da5eff65097a4eb3cdf38149ad /decode.h | |
parent | 844143e0c6cc1efa90bd27c9aa0cade7f7dd7930 (diff) |
Precreate window buffers on surfaces allocation
Diffstat (limited to 'decode.h')
-rw-r--r-- | decode.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -23,10 +23,10 @@ struct DecodeContext; struct Frame; +struct Window; -struct DecodeContext* DecodeContextCreate(void); +struct DecodeContext* DecodeContextCreate(struct Window* window); bool DecodeContextDecode(struct DecodeContext* decode_context, int fd); -const struct Frame* DecodeContextGetFrame(struct DecodeContext* decode_context); void DecodeContextDestroy(struct DecodeContext** decode_context); #endif // RECEIVER_DECODE_H_ |