Nandor Licker
Nandor Licker
You should try to replace the use of head with pattern matching. ``` Haskell case words line of "v" : ws -> ... "vn" : ws -> ... "vt" :...
`"v":ws` matches all the lists of strings which begin with the string "v", pointing `ws` to the tail of the list. For example, if you have `line = "v 0...
You need OpenGL 4.1 to run the game.
Do you have an ATI card? There's a chance I'm doing something stupid that NVIDIA drivers don't care about, but the OpenGL spec forbids it.
I've used cube map arrays & 3D textures, maybe those are not supported on Intel GPUs.
I've just tested it on my computer, it works fine, although in my opinion it's not correct. In order to port it, you should change the algorithm. I have used...
I think this is required to fix the cases you have shown me with the canonicalizers present. Good point about simulation performance. We can hold off this patch until a...
I know this will lead to duplication, but it would be nice to have some check lines to get a sense of what the test is verifying by looking at...
The internal sifive implementation of inlining should be upstreamed as a HW-level inliner.
I'll re-work this to separately indicate which arguments are inputs and outputs, requiring inout types for outputs.