Matan Addam

Results 126 comments of Matan Addam

Listing a resolution per camera may sound like an over-simplification that doesn't exist prior to a camera's stream already have been acquired by a program ― a camera device typically...

Here's my example implementation specific to linux with V4L2 which should be very common on linux and is also an OpenCV backend on linux, in case it helps. Kudos to...

Still a warning in 3.0.8: `Declarations should not be declared inline` ― when the .pxd cython declaration does not provide its own implementation but only presumably compiles the .py implementation....

I don't think that python itself (or at least CPython) provide any stable mechanism for re-importing a library to get past this. The nearest pytest plugin (pytest-xdist) has [dropped support](https://github.com/pytest-dev/pytest-xdist/issues/468)...

Oh, thanks for the quick reply, I'll try looking at how arcade makes that happen.

I wonder if enabling this implies great changes to pyglet, though it would make more sense for pytest (or an alternative testing framework) to be smart enough to allow running...

Thanks so much @pushfoo. I just have multiple headless tests for my single application, each running the application with different arguments and/or differently simulating user events while the application is...

Hi @pushfoo, I am not doing pixel-level verification in any of my tests, or at least I haven't figured going to that level would be a worthwhile strategy for my...

That said, why would you replace shaders and the GL context with mocks, if that could be accomplished by using the headless mode which as far as my understanding is...

I can see the benefit of the mocking now, but the rest of items are indeed a handful. Specifically in my project, Mac support is not even at the bottom...