Init commit. Windows version was checked.

This commit is contained in:
tomas
2025-03-23 20:03:23 +01:00
commit 5029165272
83 changed files with 199947 additions and 0 deletions

15
windows/include/utils.h Normal file
View File

@ -0,0 +1,15 @@
#ifndef UTILS_H
#define UTILS_H
#include <GL/glew.h>
#include <iostream>
#include <glm/glm.hpp>
#include <x86intrin.h>
// Helper function to check for OpenGL errors and print a message
void checkGLError(const char* operation);
float perlinNoise(float x, float y); // Placeholder declaration
uint64_t rdtsc();
#endif // UTILS_H