/
redgpu
/
bullet
Обзор
Документация
Войти
/
redgpu
/
bullet
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/GwenOpenGLTest/ImagePanel.cpp
27 строк
533 B
erwincoumans
Code-style consistency improvement:
24 сен 2018, 00:17
24 сен 2018, 00:17
ab8f169
Код
Авторство
О чём код?
#include "UnitTest.h" #include "Gwen/Controls/ImagePanel.h" using namespace Gwen; class ImagePanel : public GUnit { public: GWEN_CONTROL_INLINE(ImagePanel, GUnit) { // Normal { Controls::ImagePanel* img = new Controls::ImagePanel(this); img->SetImage(L"gwen.png"); img->SetBounds(10, 10, 100, 100); } // Missing { Controls::ImagePanel* img = new Controls::ImagePanel(this); img->SetImage(L"missingimage.png"); img->SetBounds(120, 10, 100, 100); } } }; DEFINE_UNIT_TEST(ImagePanel, L"ImagePanel");