setD method

  1. @override
RenderTextureD setD(
  1. RenderTextureD o
)
override

Copies the fields of o into this instance and returns this.

Implementation

@override
RenderTextureD setD(RenderTextureD o) {
  id = o.id;
  texture = o.texture;
  depth = o.texture;
  return this;
}