normalPlaceholder static method

Texture normalPlaceholder(
  1. Texture? texture
)

Returns texture if non-null, otherwise getNormalPlaceholderTexture.

Implementation

static gpu.Texture normalPlaceholder(gpu.Texture? texture) {
  return texture ?? getNormalPlaceholderTexture();
}