This commit is contained in:
Jan 2021-10-28 08:45:15 +02:00 committed by GitHub
commit b3f8420c6d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -1,4 +1,5 @@
#include <stdio.h>
#include <stdalign.h>
#include "rencache.h"
/* a cache over the software renderer -- all drawing operations are stored as
@ -78,6 +79,8 @@ static RenRect merge_rects(RenRect a, RenRect b) {
static Command* push_command(int type, int size) {
size_t alignment = alignof(max_align_t) - 1;
size = (size + alignment) & ~alignment;
Command *cmd = (Command*) (command_buf + command_buf_idx);
int n = command_buf_idx + size;
if (n > COMMAND_BUF_SIZE) {