Category "opengl"

Painting to a texture with undo/redo functionality

I am currently painting to a texture using: glTexSubImage2D(); You can choose brush radius, color, shape etc. Then use any of the functions: public void drawPo

How do i hide the bug image once its hit by a bullet in opengl and c++

I am working on defender/space invaders game. I have drawn bug sprite and a bullet sprite. I shoot at the bug with a bullet but when the bullet hits the bug it

LWJGL Texturing - glTexImage2D sometimes crashes

I'm making a Texture class for my game engine. Right now I currently have this simple code for creating a 2D texture and loading an image to it. public class Te

How to Run Java3D on Window10 with Intel(R) UHD Graphics 630 Card(DirectX), using Eclipse

I could not load a 3D object using Java3D 1.5.1. I tried a few examples like: (1) HelloUniverse.java from https://www.cs.utexas.edu/~scottm/cs324e/CodeSamples/H

Using Texture Atlas as Texture Array in OpenGL

I'm now building a Voxel game. In the beginning, I use a texture atlas that stores all voxel textures and it works fine. After that, I decided to use Greedy Mes

Compute shader how to update a shared resource with proper locking/unlocking

I'm currently investigating if it's technically feasible to move some calcuations from a CPU implementation to compute shaders. There is a step where I really n

ImGuiConfigFlags_DockingEnable not found

I'm trying to implement ImGui in my opengl app, but, for some reasons, the flag: ImGuiConfigFlags_DockingEnable is not found. I even tried to go in the files an

Trying to implement shadow using OpenGL; depth texture seems correct but shadow is not displaying

trying to implement shadow. I checked my depth texture on a quad, and it seems correct, but the shadow is not displaying. I check my shadow vertex and fragment

OpenGL texture arrays render the texture completely black

I'm attempting to render a .png image as a texture. However, all that is being rendered is a black square. Can anybody see any mistakes in my OpenGL GL_TEXTU

SharpGL Low Resolution Textures

I am loading textures in using the following code: var texture = new SharpGL.SceneGraph.Assets.Texture(); texture.Create(gl, filename); But when I render them

Compilation issues with a simple ImGui(GLFW+OpenGL3) program on Linux

I am getting the following error while compiling a simple imgui+glfw+opengl3 program on GCC 11.2.0 on Pop!_OS (Ubuntu): [build] In file included from ../externa

Pure OpenGL on Windows? [duplicate]

I want to use OpenGL without GLFW, the docs say that I need to add opengl32.lib to linker dependencies. How do I specifically import OpenGL an

Passing unsigned int input attribute to vertex shader

In a typical building of a vertex-array-buffer, I am trying to pass an unsigned int attribute along side other classical ones (vertex, normal, texture coordinat

SDL2 Draw scene to texture. SDL2 RenderTexture like SFML

I've been developing a 2D Engine using SFML + ImGui. The editor is rendered using ImGui and the scene window is a sf::RenderTexture where I draw the GameObject

OpenGL texture gets worse when moving camera away from object

The texture gets generally worse more I move the camera away from the object. I need to be really close to the object for the texture to be fine. Does anyone kn

Why glBufferSubData is slow?

When trying to access GL_ARRAY_BUFFER using glBufferSubData to 128 byte buffer size, accessing takes at worst 200 microseconds. Instead when allocating whole bu

Why is my OpenGL texture black (in Dear ImGUI)?

In OpenGL 4.6, I (attempt to) create and initialize a solid color texture as follows: glCreateTextures(GL_TEXTURE_2D, 1, &_textureHandle); glTexParameteri(G

GL Error 1280 when enabling depth test

I'm having some problems with an opengl application I'm writing. GLenum err = 0; glEnable( GL_DEPTH_TEST ); err = glGetError(); if ( err != GL_NO_ERROR ) p

translation in GLSL shader

I'm trying to move figure inside vertex GLSL shader: layout(location = 0) in vec3 Position; layout(location = 1) in vec3 offset; uniform mat4 ProjectionViewMa

Programmatically check OpenGL support

My swing application is trying to use OpenGL to get better performance. But on some machines the UI doesnt load at all. How could i determine programmatically i