VisuTwin Canvas
C++ 3D Engine — Metal Backend
Loading...
Searching...
No Matches
utils.h
Go to the documentation of this file.
1// SPDX-License-Identifier: Apache-2.0
2// Copyright 2025-2026 Arnis Lektauers
3//
4// Created by Arnis Lektauers on 14.11.2025.
5//
6#pragma once
7
8#include <bitset>
9
10namespace visutwin::canvas
11{
12 using BitPacking = std::bitset<32>;
13
19 uint32_t hash32Fnv1a(const uint32_t* array, size_t length);
20}
uint32_t hash32Fnv1a(const uint32_t *array, size_t length)
Definition utils.cpp:10
std::bitset< 32 > BitPacking
Definition utils.h:12