Skip to content

drawAntiAliased circle breaks drawString rendering #159

@pmudry

Description

@pmudry

Non working example :

g.drawAntiAliasedCircle(...);
g.drawString(10,10, "Pouet");

In this case, the string is not drawn correctly.

Temporary fix is :

g.drawAntiAliasedCircle(...);
g.drawFilledRectangle(0,0,0,00); // Changes current sprite batch
g.drawString(10,10, "Pouet");
g.sbFlush() // Required for proper handling, look in this direction

Metadata

Metadata

Assignees

Labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions