kocha
kocha
CC#
Created by ᑎICK on 2/6/2025 in #help
How do I implement a Camera Class in C# Forms?
Silk.Net has nice bindings for GPU stuff, so you could start there: https://dotnet.github.io/Silk.NET/docs/opengl/c1/1-hello-window/
9 replies
CC#
Created by Faker on 1/31/2025 in #help
✅ NullReferenceException when declaring an array but not initializing it
you first need to create an array, them you can assign that instance to the field.
23 replies
CC#
Created by Faker on 1/31/2025 in #help
✅ NullReferenceException when declaring an array but not initializing it
the default value of all reference types is null
23 replies
CC#
Created by kocha on 5/8/2024 in #help
Application memory keeps increasing
is the memory not hitting a "threshold", and therefor the GC doesn't run?
27 replies
CC#
Created by kocha on 5/8/2024 in #help
Application memory keeps increasing
No description
27 replies
CC#
Created by kocha on 5/8/2024 in #help
Application memory keeps increasing
hahha
27 replies
CC#
Created by kocha on 5/8/2024 in #help
Application memory keeps increasing
maybe i can try creating a minimal repro
27 replies
CC#
Created by kocha on 5/8/2024 in #help
Application memory keeps increasing
it's not a tiny codebase, so not sure how usefull this is
27 replies
CC#
Created by kocha on 5/8/2024 in #help
Application memory keeps increasing
https://github.com/FlurinBruehwiler/flamui This is the code, to test i run the Sample.ComponentGallery sample
27 replies
CC#
Created by kocha on 5/8/2024 in #help
Application memory keeps increasing
what do you mean by "managed correctly", I know that there are no references for this memory that are kept beyond the current frame, because when I run the GC, it gets freed. When I run dotmemory i see what objects are allocated each frame, and it seems fine.
27 replies
CC#
Created by kocha on 5/8/2024 in #help
Application memory keeps increasing
Well, it's the enire UI loop, it renderes a frame 60 times a second.
27 replies
CC#
Created by kocha on 5/8/2024 in #help
Application memory keeps increasing
My whole Application, it has a main loop which executes every 16ms and that allocates a bit of memory. But this memory should obviously be freed again.
27 replies
CC#
Created by kocha on 11/3/2023 in #help
✅ Why do my ASP.NET Core Requests not run in parallel?
so it is a browser thing
19 replies
CC#
Created by kocha on 11/3/2023 in #help
✅ Why do my ASP.NET Core Requests not run in parallel?
ok, tested it with postman, they run in parallel
19 replies
CC#
Created by kocha on 11/3/2023 in #help
✅ Why do my ASP.NET Core Requests not run in parallel?
yes, but i just open the url in 2 seperate tabs
19 replies
CC#
Created by kocha on 11/3/2023 in #help
✅ Why do my ASP.NET Core Requests not run in parallel?
hmm, if i test with your code it also takes 5000, it only happens if i send the requests with my browser
19 replies
CC#
Created by kocha on 11/3/2023 in #help
✅ Why do my ASP.NET Core Requests not run in parallel?
i start two requests at the same time and see if they finish at the same time, but one of the two take roughly double the time
19 replies