Replies: 1 comment 2 replies
-
This looks like an initialization problem. Are you properly calling |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am trying to use a
filament::Stream
connected to an external texture using.stream
on Android API 24. Am using filament built from source using the standardbuild.sh -p android -i release|debug
. On API 30 this all works fine, but on 24 the debug build bails out with:Looking around a bit in
VirtualMachineEnv.h
and friends shows that there is special code for API < 26, but that only gets included at compile time (at which time it probably looks attargetSdkVersion
, which is probably >=26?).What is the recommended way to get this working on API 24, preferably with a build that also still works on API >=26 without sacrificing other things? I don't mind building filament myself (am already doing that anyway). Or is this a bug?
Beta Was this translation helpful? Give feedback.
All reactions