MakeSolidColorTexture function

Texture MakeSolidColorTexture(
  1. ChronosGL cgl,
  2. String url,
  3. String fillStyle
)

Implementation

Texture MakeSolidColorTexture(ChronosGL cgl, String url, String fillStyle) {
  return ImageTexture(cgl, url, MakeSolidColorCanvas(fillStyle));
}