[escher] Add a default constructor to buffer text view

Change-Id: Ic71b478f146591f2e93ca80722e1597eb05ccfdd
This commit is contained in:
Émilie Feral
2016-11-29 11:30:39 +01:00
parent 9b01508fac
commit 9c64468fb4
2 changed files with 6 additions and 0 deletions

View File

@@ -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)