Would there be any significant benefits (other tha...
# compose
e
Would there be any significant benefits (other than developer ergonomics) to having a hardware rendering system native to compose like SurfaceView, and if so, are there any eventual plans to provide this?
r
There's AndroidExternalSurface
It gives you the developer ergonomics
e
So would a theoretical future version of e.g. camerax for compose use AndroidExternalSurface, or is the perpetual plan for things like that to wrap an AndroidView?
Oh I see it is an AndroidView 😅
r
It doesn't really matter yeah
Compose is a giant View anyway :) (and sometimes multiple views)
😆 4
d
@romainguy Compose is a giant View? what does that mean?
r
Exactly that. Compose attaches to a window via a regular View (a ComposeView). It's also what enables full interop between both systems
d
ok ! 😉