Publicly import simpledisplay from pixmappresenter

Looks like a convenience feature, *but* - more imporantly - this
prevents certain symbol name clashes from occurring in common user-code.
This commit is contained in:
Elias Batek 2024-04-24 22:17:06 +02:00
parent 486195859c
commit e12846e996
1 changed files with 12 additions and 1 deletions

View File

@ -158,7 +158,18 @@
module arsd.pixmappresenter;
import arsd.core;
import arsd.simpledisplay;
/++
While publicly importing `arsd.simpledisplay` is not actually necessary,
most real-world code would eventually import said module as well anyway.
More importantly, this public import prevents users from facing certain
symbol clashes in their code that would occur in modules importing both
`pixmappresenter` and `simpledisplay`.
For instance both of these modules happen to define different types
as `Pixmap`.
+/
public import arsd.simpledisplay;
///
public import arsd.pixmappaint;