Emscripten workarounds and llvm syntax fixes
[platform/core/uifw/dali-core.git] / automated-tests / dali-test-suite-utils / test-application.cpp
1 #define tet_infoline printf
2 #define tet_printf printf
3 #include "test-application.h"
4
5 bool BlendEnabled(const TraceCallStack& callStack)
6 {
7   std::stringstream out;
8   out << GL_BLEND;
9   bool blendEnabled = callStack.FindMethodAndParams("Enable", out.str());
10   return blendEnabled;
11 }
12
13 bool BlendDisabled(const TraceCallStack& callStack)
14 {
15   std::stringstream out;
16   out << GL_BLEND;
17   bool blendEnabled = callStack.FindMethodAndParams("Disable", out.str());
18   return blendEnabled;
19 }
20
21