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

Unified Diff: gpu/command_buffer/tests/es3_misc_functions_unittest.cc

Issue 1325433003: command_buffer: Add support for creating non-WebGL ES 3 contexts (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: missing hunk Created 5 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/command_buffer/service/texture_manager_unittest.cc ('k') | gpu/command_buffer/tests/gl_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/command_buffer/tests/es3_misc_functions_unittest.cc
diff --git a/gpu/command_buffer/tests/es3_misc_functions_unittest.cc b/gpu/command_buffer/tests/es3_misc_functions_unittest.cc
new file mode 100644
index 0000000000000000000000000000000000000000..7f9769ce98498a66d6d9585dd638ac10119e094f
--- /dev/null
+++ b/gpu/command_buffer/tests/es3_misc_functions_unittest.cc
@@ -0,0 +1,83 @@
+// Copyright 2015 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 <GLES2/gl2.h>
+#include <GLES2/gl2ext.h>
+#include <GLES2/gl2extchromium.h>
+#include <GLES3/gl3.h>
+
+#include "base/command_line.h"
+#include "gpu/command_buffer/tests/gl_manager.h"
+#include "gpu/command_buffer/tests/gl_test_utils.h"
+#include "testing/gmock/include/gmock/gmock.h"
+#include "testing/gtest/include/gtest/gtest.h"
+#include "ui/gl/gl_switches.h"
+
+#define SHADER_VERSION_300(Src) "#version 300 es\n" #Src
+
+namespace gpu {
+
+class OpenGLES3FunctionTest : public testing::Test {
+ protected:
+ void SetUp() override {
+ base::CommandLine command_line(*base::CommandLine::ForCurrentProcess());
+ command_line.AppendSwitch(switches::kEnableUnsafeES3APIs);
+ GLManager::Options options;
+ options.context_type = gles2::CONTEXT_TYPE_OPENGLES3;
+ gl_.InitializeWithCommandLine(options, &command_line);
+ }
+ void TearDown() override { gl_.Destroy(); }
+ bool IsApplicable() const { return gl_.IsInitialized(); }
+ GLManager gl_;
+};
+
+TEST_F(OpenGLES3FunctionTest, GetFragDataLocationInvalid) {
+ if (!IsApplicable()) {
+ return;
+ }
+ // clang-format off
+ static const char* kVertexShader =
+ SHADER_VERSION_300(
+ in vec4 position;
+ void main() {
+ gl_Position = position;
+ });
+ static const char* kFragColorShader =
+ SHADER_VERSION_300(
+ precision mediump float;
+ uniform vec4 src;
+ out vec4 FragColor;
+ void main() {
+ FragColor = src;
+ });
+ // clang-format on
+
+ GLuint vsid = GLTestHelper::LoadShader(GL_VERTEX_SHADER, kVertexShader);
+ GLuint fsid = GLTestHelper::LoadShader(GL_FRAGMENT_SHADER, kFragColorShader);
+ GLuint program = glCreateProgram();
+ glAttachShader(program, vsid);
+ glAttachShader(program, fsid);
+ glDeleteShader(vsid);
+ glDeleteShader(fsid);
+
+ GLint location = glGetFragDataLocation(program, "FragColor");
+ EXPECT_EQ(static_cast<GLenum>(GL_INVALID_OPERATION), glGetError());
+ EXPECT_EQ(-1, location);
+ location = glGetFragDataLocation(program, "Unknown");
+ EXPECT_EQ(static_cast<GLenum>(GL_INVALID_OPERATION), glGetError());
+ EXPECT_EQ(-1, location);
+
+ glLinkProgram(program);
+
+ location = glGetFragDataLocation(program, "FragColor");
+ EXPECT_EQ(static_cast<GLenum>(GL_NO_ERROR), glGetError());
+ EXPECT_EQ(0, location);
+ location = glGetFragDataLocation(program, "Unknown");
+ EXPECT_EQ(static_cast<GLenum>(GL_NO_ERROR), glGetError());
+ EXPECT_EQ(-1, location);
+
+ glDeleteProgram(program);
+}
+
+} // namespace gpu
« no previous file with comments | « gpu/command_buffer/service/texture_manager_unittest.cc ('k') | gpu/command_buffer/tests/gl_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698