mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-20 14:20:39 +01:00
[escher] Add a default constructor to buffer text view
Change-Id: Ic71b478f146591f2e93ca80722e1597eb05ccfdd
This commit is contained in:
@@ -2,6 +2,11 @@
|
||||
#include <string.h>
|
||||
#include <assert.h>
|
||||
|
||||
BufferTextView::BufferTextView() :
|
||||
TextView(0.5f, 0.5f, KDColorBlack, KDColorWhite)
|
||||
{
|
||||
}
|
||||
|
||||
BufferTextView::BufferTextView(float horizontalAlignment, float verticalAlignment,
|
||||
KDColor textColor, KDColor backgroundColor) :
|
||||
TextView(horizontalAlignment, verticalAlignment, textColor, backgroundColor)
|
||||
|
||||
Reference in New Issue
Block a user