You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
344 B
15 lines
344 B
#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
|