TronicLabs
TronicLabs
@shaduzlabs Any new on refractoring?
+1 for window created upon a child window using it's handle
+3 YEAR LATER :)
my current implementation for simple attach to parent handle the GLFW windows as child... for other OS need to investigate... ``` c++ GLFWAPI HWND glfwSetWin32WindowParent(HWND parentHandle) { _GLFW_REQUIRE_INIT_OR_RETURN(NULL); glfwWindowHint(GLFW_CHILD, GLFW_TRUE);...
@evilWicked yeah, this is really my current usage scenario, but GLFW must be consistent across all platforms it supports. Now, I'm testing on Windows OS DLLs, with mine simply parent...
@tylorr It's part of my implementation, you can not find it anywhere. I have not posted all of the code to avoid confusion because it changes some things in the...
if we can have other platform draft implementation, we can finalize and test this feature.
+1 would like to see this
Sorry if I'm bored with this, but no advice on how to achieve it? It might be possible to use the NVGpathCache?
thanks for asking, sorry if I steal any more time, but my first idea was to use an triangle intersection (https://en.wikipedia.org/wiki/M%C3%B6ller%E2%80%93Trumbore_intersection_algorithm) So which method to adopt to have the data...