update method

int update(
  1. Pointer<SdlRect> rect,
  2. Pointer<NativeType> pixels,
  3. int pitch
)

Implementation

int update(Pointer<SdlRect> rect, Pointer<NativeType> pixels, int pitch) {
  // 664
  return sdlUpdateTexture(this, rect, pixels, pitch);
}