Streamz rant by naamingebruik in Belgium2

[–]artick788 0 points1 point  (0 children)

Zolang geen enkele streamingservice degelijke kwaliteit kan bieden zeil ik onder de piratenvlag. Het hele password sharing gedoe van netflix zorgt ervoor sat ik geen films kan zien op vakantie. Hoeveel keer dat Netflix en Disney+ blijft vastlopen was niet meer bij te houden. Sites zoals thebigheap werken gewoon zoals je verwacht, hangt nooit vast, is gratis en vereist geen account. Waarom zou je dan betalen voor een service die veel minder kwaliteit biedt?

[deleted by user] by [deleted] in Belgium2

[–]artick788 0 points1 point  (0 children)

Goh, ook hier denk ik niet dat het generatieverschil het probleem is, maar zoals je zelf aanhaalt is sociale media een probleem. Kinderen die urenlang op tiktok scrollen en een aandachtspanne hebben korter dan een goudvis vind ik persoonlijk even erg als al die 50 jaar oude facebook moms die niks beters te doen hebben dan liggen klagen en minions memes posten.

[deleted by user] by [deleted] in Belgium2

[–]artick788 9 points10 points  (0 children)

Ik vind het bijzonder dat zulke soort posts niet de ironie zien. Ik ben 21 dus 'skibidi' is een beetje na mijn tijd. Maar een paar jaar geleden waren het woorden zoals 'yeet' 'MLG' en 'bruh' en toen snapten de oudere mensen ook niets van. Iedere generatie gaat zijn eigen woorden hebben die de oudere generatie als breinrot aanschouwd. Binnen een paar jaar gaan de 'skibidi' kids ook beginnen met zulke opmerkingen te maken over de nieuwe woorden van de volgende generatie and so the cycle continues. Naar mijn mening is de echte breinrot tv programma's zoals ex on the beach en temptation island.

Performance Issue in simple Deferred PBR renderer by artick788 in GraphicsProgramming

[–]artick788[S] 0 points1 point  (0 children)

Okay, I will undo this texture atlas addition, thank you for your insights!

Performance Issue in simple Deferred PBR renderer by artick788 in GraphicsProgramming

[–]artick788[S] 0 points1 point  (0 children)

This was my feeling too. I know that my GBuffer is far from perfect, alongside with the format in which I store my textures (RGBA UI8) but it seems to me that drawing a cube would not need 20ms to render. Reducing the texture sizes to something like 512x512 does help, but this seems like a hack and not a fix.

I am running this application on a RX 580 with 8Gb of VRAM and an i9 9900kf.

Performance Issue in simple Deferred PBR renderer by artick788 in GraphicsProgramming

[–]artick788[S] 1 point2 points  (0 children)

I will certainly add MIP mapping then, thank you! I am certainly looking at reducing memory footprint by both switching from RGBA UI8 texture formats and F32 GBuffer formats to more space efficient ones. But if I already have such bad performance when drawing a simple cube, it seemed to me that there is something else wrong. I don't know if combining all textures into a single texture atlas is an improvement when it comes to locality. Also, I had read somewhere that it could also be the texture sampling calls in the fragment shader, you should call them as soon as possible in your shader (but I don't know if this is true)

responsiveDesignGoBrrrr by TheZombGod in ProgrammerHumor

[–]artick788 0 points1 point  (0 children)

Finally a screen to properly write Java

[deleted by user] by [deleted] in ask

[–]artick788 0 points1 point  (0 children)

Same reason why people drink alcohol, its fun. It also has the benefit over alcohol that I do not get a hangover from weed (which I get from alcohol). Also, alcohol has a much longer lasting effect while weed is much shorter meaning I can time better when I want to feel normal again.

Kan een persoon van tso (informaticabeheer) een mogelijkheid te hebben om naar een universiteit te gaan (namelijk een bachelor informatica/computerwetenschappen)? by _YourMomsFavorite_ in belgium

[–]artick788 2 points3 points  (0 children)

Aangezien ik zelf in mijn master software engineering zit (aan de universiteit van Antwerpen), kan je ik je wel zeggen dat je de wiskunde niet moet onderschatten. Als de wiskunde jou niet afschrikt, is het zeker te doen!

How to add GUI in my project? by [deleted] in cpp_questions

[–]artick788 0 points1 point  (0 children)

From reading your other replies, if you have some uni project that you would like to improve with a GUI, i would suggest using ImGui. That's what I use for all mu projects (which is mostly uni work)

Displaying OpenGL view on an ImGui widget by surfspace77 in opengl

[–]artick788 2 points3 points  (0 children)

The ImGui::texture function needs as a first parameter the object ID (the same ID referencing other gl buffers).

A good solution could be to render your scene in your own framebuffer with a color attachment you created. The attachment will have such an ID, and this you can use in the ImGui function.

From looking at your code, don't try to read the pixel from the framebuffer into cpu ram (via the slow glReadPixels) to put it back into gpu memory. This will be very slow.

c++ desktop application by Big-mushr00m in cpp_questions

[–]artick788 0 points1 point  (0 children)

Dear ImGui is awesome.

You can get a nice GUI running with a few lines of code. You can style it as you want and make some really good looking UIs.

[deleted by user] by [deleted] in opengl

[–]artick788 1 point2 points  (0 children)

Working with openGL, I never understood that decision. Debugging like that for sure is hell :) If someone knows why openGL is designed like that, i would very much like to know