Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(267)

Unified Diff: gpu/khronos_glcts_support/native/main.cc

Issue 556333003: Add support for khronos gl-cts using its drawElements apis (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gpu/khronos_glcts_support/native/egl_native_windowless.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/khronos_glcts_support/native/main.cc
diff --git a/gpu/khronos_glcts_support/native/main.cc b/gpu/khronos_glcts_support/native/main.cc
new file mode 100644
index 0000000000000000000000000000000000000000..8ffde05215aba91a78af9a2345263fa1b9c6068b
--- /dev/null
+++ b/gpu/khronos_glcts_support/native/main.cc
@@ -0,0 +1,52 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include <cstdio>
+
+#include "base/at_exit.h"
+#include "base/command_line.h"
+#include "base/message_loop/message_loop.h"
+
+#include "third_party/khronos_glcts/framework/common/tcuApp.hpp"
+#include "third_party/khronos_glcts/framework/common/tcuCommandLine.hpp"
+#include "third_party/khronos_glcts/framework/common/tcuDefs.hpp"
+#include "third_party/khronos_glcts/framework/common/tcuPlatform.hpp"
+#include "third_party/khronos_glcts/framework/common/tcuResource.hpp"
+#include "third_party/khronos_glcts/framework/common/tcuTestLog.hpp"
+#include "third_party/khronos_glcts/framework/delibs/decpp/deUniquePtr.hpp"
+
+// implemented in the native platform
+tcu::Platform* createPlatform ();
+
+void GTFMain(int argc, char* argv[]) {
+ setvbuf(stdout, DE_NULL, _IOLBF, 4*1024);
+
+ try {
+ tcu::CommandLine cmdLine(argc, argv);
+ tcu::DirArchive archive(cmdLine.getArchiveDir());
+ tcu::TestLog log(cmdLine.getLogFileName(), cmdLine.getLogFlags());
+ de::UniquePtr<tcu::Platform> platform(createPlatform());
+ de::UniquePtr<tcu::App> app(
+ new tcu::App(*platform, archive, log, cmdLine));
+
+ // Main loop.
+ for (;;) {
+ if (!app->iterate())
+ break;
+ }
+ }
+ catch (const std::exception& e) {
+ tcu::die("%s", e.what());
+ }
+}
+
+int main(int argc, char *argv[]) {
+ base::AtExitManager at_exit;
+ CommandLine::Init(argc, argv);
+ base::MessageLoopForUI message_loop;
+
+ GTFMain(argc, argv);
+
+ return 0;
+}
« no previous file with comments | « gpu/khronos_glcts_support/native/egl_native_windowless.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698