Java ImGui Error EXCEPTION_ACCESS_VIOLATION?

I was watching a tutorial by GamesWithGabe (2D game engine) and got an error in the IMGUI section. I had to edit a lot of the tutorial because of new versions. Now I get the following error when I start up: 08:38:22: Executing ':Main.main()'… > Task :compileJava UP-TO-DATE > Task :processResources NO-SOURCE > Task :classes…

WebGL – Clip Space | Pixel Space?

// Renderer Beispiel render(){ const s2 = new Square(300, 100, 70, [0, 1, 1, 1]); s2.setup(this.context, this.program); s2.render(this.program, this.context, deltaTime); this.vertexManager.draw(3, 0, 4, 100, 100, 0, [0,0,1,1]); } // export class Square extends Renderable { constructor (x, y, size, color) { super(); this.x = x; this.y = y; this.size = size; this.color = color; this.vertices…

OpenGL Shader Uniform is not recognized in the code?

I'm currently trying to learn OpenGL. And I'm having a problem: When I try to locate my shader's uniform using glGetUniformLocation, it simply can't find it. Any idea why? My code: const char* vertexShaderSource = R"( #version 460 core uniform vec3 transformation; in vec3 position; out vec4 color; void main() { gl_Position = vec4(position, 1.0);…

openGL rotate camera around itself?

Hi, I'm trying to get started with 3D in OpenGL, but my camera only rotates around the coordinate origin! Here's my code: For each model, each frame, I call: models[i])->draw(currentShader, projectionMatrix * camera.getTransformation().mat() In the draw function of each model is then: shader.setUniform<Matrix4>(shader.getUniformLocation("MVP"), VP * transformation.mat()); Now I do the cursorPositionCallBack function: enviroment.camera.getTransformation().rotate(Transformation::Y, movedX); So…