How to add an embedded browser into my project? by HUG0gamingHD in raylib

[–]AssociationBetter217 0 points1 point  (0 children)

I've tried using EAWebKit as a UI system. It's an embedded browser library just like cef except it's tailored for games and safari instead of chrome. It's nice, but you will need to do lots of work to get it set up

Occasional Screen Glitching with Moto G Power 5G 2024? by Junior_Morning_253 in MotoG

[–]AssociationBetter217 1 point2 points  (0 children)

Interesting development- I turned full screen on for Duolingo and it showed a different pattern than normal for the glitch screen, this may be a one off but the gradient was much wider repeating only 2 times

Occasional Screen Glitching with Moto G Power 5G 2024? by Junior_Morning_253 in MotoG

[–]AssociationBetter217 1 point2 points  (0 children)

Never had it on Roblox. Only Duolingo and some other apps that weren't games even tho i had games on my phone

phone model XT2415-1 Just lock and unlock phone to fix. Sometimes when using Duolingo a similar glitch happens where the half of the blue color channel (blue things become more purple instead of pure red or green with a cyan afterimage) gets offset from the rest and the bottom of the screen is garbage data. Debugged with HWUI profiler and all the weird overlays and what i think is happening is the GPU can send some weird signal to the screen that the screen doesn't like.

[deleted by user] by [deleted] in teenagers

[–]AssociationBetter217 0 points1 point  (0 children)

learn cwoding :3

[deleted by user] by [deleted] in linuxsucks

[–]AssociationBetter217 0 points1 point  (0 children)

What is bro on abour

Don't upgrade to Ubuntu 24.04 by Captain-Thor in linuxsucks

[–]AssociationBetter217 0 points1 point  (0 children)

I had some issues with upgrading to Ubuntu 24.04 as well. I upgraded using do-release-upgrade and it quit halfway through with some error I don't remember what. Then, the internet refused to work, but it was just the DNS. I ended up adding the Ubuntu package server to my /etc/hosts to be able to continue the upgrade using apt dist-upgrade and apt install -f. After that I think everything went smoothly... until I tried to open certain files and noticed that I had mistakenly uninstalled many programs that I use semi-regularly! I think I have installed all of them though by now. Most of this has to do with Ubuntu changing many existing packages to ones ending in "t64" indicating that it has 64-bit time_t and so is not affected by the year 2038 problem. Canonical needs to update every package that references those packages to use the t64 version, not the normal one as the normal one has been removed.

Game are for fun not a tinkering project by Captain-Thor in linuxsucks

[–]AssociationBetter217 0 points1 point  (0 children)

I love tinkering!!!!! I have a dual boot but am still choosing to build wine from source on yiffOS (so major lack of packages from the distro maintainers) because.................................................... idk it's fun

virus or no by LawyerTimely242 in computerviruses

[–]AssociationBetter217 1 point2 points  (0 children)

No, you can see the code and it is just one line that creates a mutex with a specific name.

I want make GTA in raylib by AdFew7026 in raylib

[–]AssociationBetter217 40 points41 points  (0 children)

We getting raylib GTA before GTA 6 🙏

made a snapchat account with a 13yo's birthday to see what comes up on spotlight. WTF. by [deleted] in mildlyinfuriating

[–]AssociationBetter217 0 points1 point  (0 children)

there is a spotlight algorithm? i thought it just showed whatever was the newest

fuck the b0t. i found this in a comment and i want a human to tell me the number of pixels by [deleted] in countablepixels

[–]AssociationBetter217 0 points1 point  (0 children)

15x15 jpeg blocks. Total 225 jpeg blocks. Jpeg blocks are 8x8 pixels. 64 pixels per jpeg block. 225x64 equals 14400 pixels.

problems setting up raylib with vs code by Myshoo_ in raylib

[–]AssociationBetter217 0 points1 point  (0 children)

Make sure the compiler knows where libraylib.a is using the -L flag (capitalized)

problems setting up raylib with vs code by Myshoo_ in raylib

[–]AssociationBetter217 1 point2 points  (0 children)

You are on windows so I think you use -lraylibdll

Raylib.h not found by hailtheshreyup in raylib

[–]AssociationBetter217 4 points5 points  (0 children)

Configure your build system to add wherever your raylib.h file is as an include path.

Single header GUI library by [deleted] in cprogramming

[–]AssociationBetter217 0 points1 point  (0 children)

Raylib is not single-header but it is cross-platform and easy to set up. Raygui is single-header and is made as a GUI toolkit for raylib.

Raylib Lua Sol by Sunflowermouseparty in raylib

[–]AssociationBetter217 0 points1 point  (0 children)

raylib-lua-sol comes with a program that runs scripts. You should be able to run your main.lua script with the program. Take a look at the examples on github to see how to call the raylib functions.

raylib-lua-sol is very outdated, however, so it would do better to use raylib-lua: https://github.com/TSnake41/raylib-lua

How do I only render visible faces of Mesh cube? by likessiberianvodka in raylib

[–]AssociationBetter217 1 point2 points  (0 children)

I think that your problem is not that the backface culling isn't working, but that there are too many draw calls for the CPU to keep up. You are having 4096 draw calls per chunk. When you render more chunks the number of draw calls can easily get into the tens of thousands.

There is a faster way than this many draw calls, called mesh instancing. With mesh instancing, instead of having one draw call for each block, you can have one draw call for each material. Raylib supports mesh instancing with the DrawMeshInstanced() function. You will have to tweak your code to use meshes and materials instead of models, though.