Merge branch 'master' of github.com:bkaradzic/bgfx

This commit is contained in:
Branimir Karadžić 2015-02-23 17:25:13 -08:00
Родитель fb6aa4f51d 207117f0a2
Коммит 9e877bfb00
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -2023,7 +2023,7 @@ struct Imgui
xx = -borderSize;
yy = -1;
width = 2*borderSize+1;
height = m_viewHeight;
height = m_viewHeight+1;
triX = 0;
triY = (m_viewHeight-triSize)/2;
orientation = _checked ? TriangleOrientation::Left : TriangleOrientation::Right;
@ -2033,7 +2033,7 @@ struct Imgui
xx = m_viewWidth - borderSize;
yy = -1;
width = 2*borderSize+1;
height = m_viewHeight;
height = m_viewHeight+1;
triX = m_viewWidth - triSize - 2;
triY = (m_viewHeight-width)/2;
orientation = _checked ? TriangleOrientation::Right : TriangleOrientation::Left;