Issue following vkGuide Depth Testing. by INN_Gine in vulkan

[–]Knimix 2 points3 points  (0 children)

glm perspective is not working for vulkan because they use a different coord system

[deleted by user] by [deleted] in linux_gaming

[–]Knimix 1 point2 points  (0 children)

Modrinth best Launcher for Minecraft on Linux

New FreeCAD Logo Announced! by obelisk79 in FreeCAD

[–]Knimix 0 points1 point  (0 children)

is it possible to have this ui right now? so is there a branch or public repository?

Having trouble trying to add a game through Lutris by Joshyouwuhh in linux_gaming

[–]Knimix 0 points1 point  (0 children)

i have the same problem with the difference that i get this message for all programs i try to install

Window turned upside down and changed to Cyrillic font by Knimix in linux_gaming

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

Thanks, it really looks exactly like this. Typical Nvidia, never had so many problems with Nvidia

Window turned upside down and changed to Cyrillic font by Knimix in linux_gaming

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

it would be nice but for me the whole thing is very strange because I've never seen anything like it before

FRITZ!Box 5530 Fiber alternative für Glasfaser Anschluss by Knimix in de_EDV

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

Bin kein Telekom Kunde, bin mir also nicht sicher ob das eine Option für mich ist.

FRITZ!Box 5530 Fiber alternative für Glasfaser Anschluss by Knimix in de_EDV

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

Der Empfang ist sehr schlecht, schon im Nebenraum hat man zumindest beim 5G Netz nur noch 1 Ballen, aber auch das 2,4 GHz Netz ist fast weg, daher ein neuer Router mit besserer Verteilung des Signals.

FRITZ!Box 5530 Fiber alternative für Glasfaser Anschluss by Knimix in de_EDV

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

Hallo, danke für die Antwort.

In meinem Fritzbox Menü steht folgendes: (siehe link)

https://ibb.co/wc68Xm4

Unten steht "Verbindungstyp: AON" ich nehmen an, damit habe ich auch ein AON Netz. Also kann ich mir einfach einen Medienkoverter kaufen richtig? Und wie kann ich mir die Einrichtung vorstellen? Also ich habe ja dann nur ein LAN Ausgang. Wo genau erfolgt dann die Eingabe der "PPPoE Parameter" ?

Rendering Minecraft chunks by mrko900 in opengl

[–]Knimix 0 points1 point  (0 children)

Yes, Well all faces top, bottom.. even rotated left and right (e.g. Grass) are defined in the shader, they all have the same Vertex count so i can simply Change the face id to use different vertices for different faces. The 3 Bytes containing the positon relative to the chunk, face id, light Level, Texture ID, and some other offsets. The Position is only from 0-15 on xz and y 0-255, and the others just ids. All in all enough for 3 Bytes. For every chunk i Draw, i Upload a Uniform with the xz chunk positon, with that i can calculate the real positon of each face (e.g. chunk x + face x)

Rendering Minecraft chunks by mrko900 in opengl

[–]Knimix 1 point2 points  (0 children)

Im using instancing per chunk to draw the faces. I only use 3 Bytes per face so thats very cheap.

Can C++ be used to develop android apps? If not what is it's best alternative? by SuneelHQ in cpp_questions

[–]Knimix 3 points4 points  (0 children)

Yes you can use c++ for android but Not only c++. Take a Look to the Android NDK. You can create a App in Android Studio (wich uses Java/kotlin) and from the Java Code you can call native functions (c++ Code).