Jan Kaniewski

Results 486 comments of Jan Kaniewski

There currently isn't a linux build. You'll need to modify BluBrowser to make a process equivalent of ```blu_ue4_process.exe``` found in ```BLUI/ThirdParty/cef/Win/shipping``` along with matching static libs. It's quite an involved...

See https://github.com/getnamo/BluBrowser for solution to build the process. I believe only minor modifications are used for the build.

There's no built in utility that deletes the cache that I'm aware of. Code contributions welcome

I'm not familiar enough with issue to be helpful. Best bet would be to look at CEF/chromium forums/mailing lists under similar topics and once you know the configs/handlers to change...

partial work done in https://github.com/getnamo/opencl-ue4/tree/conversion

Exactly, inside the kernel I believe you can typecast the byte array pointer to whatever data format you need the work done, do the work, update the e.g. ```__global char*```...

you can probably just do ```(void *)&buffer``` on the host side ```Ret = clSetKernelArg(Kernel, 0, sizeof(cl_mem), (void *)&buffer);``` and on the kernel side just define your function to take the...

Also see http://www.informit.com/articles/article.aspx?p=1732873&seqNum=3 for alignment

Great, thanks for confirming; that demo is looking pretty snazzy! Only issue I see with changing it from actor component to generic object is you lose default options and easy...

Right but what I'm saying is that the user will need a way to get the results and there are a few approaches for this. In blueprint you can't use...