Matt Sealey

Results 4 comments of Matt Sealey

you need to add dxva2.lib to your additional dependencies

``` from __future__ import print_function, division, absolute_import, unicode_literals if __graalpython__: if __graalpython__.jython_emulation_enabled: from com.example.code import MiscUtils else: import java MiscUtils = java.type("com.example.code.MiscUtils") print(f"Emulating Jython: {__graalpython__.jython_emulation_enabled}") else: from com.example.code import MiscUtils...

tss.. I see MiscUtils.mask is private now so that explains some of it, but it certainly doesn't explain extractBits

>> I should note that I have another test where super().init() actually worked inside init but this seems to be the only one it proxies > That super().__init__() just calls...