rlSetFramebufferWidth method

void rlSetFramebufferWidth(
  1. num width
)

Set current framebuffer width

Implementation

void rlSetFramebufferWidth(
  num width,
) => run(
  () => _debugLabels.rlSetFramebufferWidth(width),
  () => _flat.rlSetFramebufferWidth(
    width.toInt(),
  ),
);