updateYuv method
Implementation
int updateYuv(Pointer<SdlRect> rect, Pointer<Uint8> yplane, int ypitch,
Pointer<Uint8> uplane, int upitch, Pointer<Uint8> vplane, int vpitch) {
// 704
return sdlUpdateYuvTexture(
this, rect, yplane, ypitch, uplane, upitch, vplane, vpitch);
}