fix: i8vec2 is 4 bytes wide, rather than 2.

This commit is contained in:
2025-06-27 12:35:44 +02:00
parent 7b3b09ebe7
commit c4905f2da3

View File

@@ -1,8 +1,8 @@
#pragma once
#include <stdint.h>
#include "types.h"
#define VX 0
#define VY 1
typedef int8_t i8vec2 __attribute__((vector_size(4)));
typedef i8 i8vec2 __attribute__((vector_size(2)));