I have tested a single input processor with the "drag event".
Surprisingly (at least for me) if I put two fingers on the screen and select the events with the "Y" position, I can share the screen into two parts and both events of the top paddle and bottom paddle are triggered.
Sub IP_TouchDragged(ScreenX As Int, ScreenY As Int, Pointer As Int) As Boolean
Dim delta, pos As Float
If ScreenY > Activity.Height/2 Then 'paddle1
... do things
Else 'paddle2
.... do things for paddle2
End If
I didn't expected this behavior, but it is really nice !