Christoph Bratschi

Results 102 comments of Christoph Bratschi

@inDigiNeous I had the same issue on a Raspberry Pi. So this is not related to the retina display. I guess it is related to rounding issues and interpolation. Fractional...

@inDigiNeous how large is your atlas texture? 512x512?

Thanks @yairchu, now finally found some more details about OpenGL locking required on non-main thread: https://developer.apple.com/library/archive/documentation/GraphicsImaging/Conceptual/OpenGL-MacProgGuide/opengl_threading/opengl_threading.html. The following code change solved my problems: ``` void render() override { //lock rendering...

Still an issue with Payload 2.3.0 and the 0.3.0 Lexical plugin. Hope the pull request gets through soon. Thanks.

Tried Payload 2.4.0 and still getting the Payload CSS in my Next.js frontend. Importing the Slate to Lexical converted still imports some CSS.

@AlessioGr there is no error: I am just using the code listed above and CSS from the plugin gets imported to Next.js and breaks the layout of the frontend. The...

Will this be fixed in Payload 3.x which is Next.js based?

Tried it and got: TypeError: Invalid host defined options

This pull request might be related to this issue: https://github.com/lykmapipo/mongoose-gridfs/pull/89

According to node-fetch the following should be used on CJS: ```JS // mod.cjs const fetch = (...args) => import('node-fetch').then(({default: fetch}) => fetch(...args)); ``` https://www.npmjs.com/package/node-fetch The CJS and ESM syntax is...