summaryrefslogtreecommitdiffstats
path: root/gpu/command_buffer/client
diff options
context:
space:
mode:
Diffstat (limited to 'gpu/command_buffer/client')
-rw-r--r--gpu/command_buffer/client/gles2_c_lib_autogen.h9
-rw-r--r--gpu/command_buffer/client/gles2_cmd_helper_autogen.h14
-rw-r--r--gpu/command_buffer/client/gles2_implementation.cc55
-rw-r--r--gpu/command_buffer/client/gles2_implementation_autogen.h7
-rw-r--r--gpu/command_buffer/client/gles2_implementation_unittest.cc117
5 files changed, 3 insertions, 199 deletions
diff --git a/gpu/command_buffer/client/gles2_c_lib_autogen.h b/gpu/command_buffer/client/gles2_c_lib_autogen.h
index 72a39db..091d565 100644
--- a/gpu/command_buffer/client/gles2_c_lib_autogen.h
+++ b/gpu/command_buffer/client/gles2_c_lib_autogen.h
@@ -2,9 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-// This file is auto-generated from
-// gpu/command_buffer/build_gles2_cmd_buffer.py
-// DO NOT EDIT!
+// This file is auto-generated. DO NOT EDIT!
// These functions emluate GLES2 over command buffers.
#ifndef GPU_COMMAND_BUFFER_CLIENT_GLES2_C_LIB_AUTOGEN_H_
@@ -580,11 +578,6 @@ void GLES2RateLimitOffscreenContextCHROMIUM() {
void GLES2SetSurfaceCHROMIUM(GLint surface_id) {
gles2::GetGLContext()->SetSurfaceCHROMIUM(surface_id);
}
-void GLES2GetMultipleIntegervCHROMIUM(
- const GLenum* pnames, GLuint count, GLint* results, GLsizeiptr size) {
- gles2::GetGLContext()->GetMultipleIntegervCHROMIUM(
- pnames, count, results, size);
-}
#endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_C_LIB_AUTOGEN_H_
diff --git a/gpu/command_buffer/client/gles2_cmd_helper_autogen.h b/gpu/command_buffer/client/gles2_cmd_helper_autogen.h
index 2cc91eb..c8deb23 100644
--- a/gpu/command_buffer/client/gles2_cmd_helper_autogen.h
+++ b/gpu/command_buffer/client/gles2_cmd_helper_autogen.h
@@ -2,9 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-// This file is auto-generated from
-// gpu/command_buffer/build_gles2_cmd_buffer.py
-// DO NOT EDIT!
+// This file is auto-generated. DO NOT EDIT!
#ifndef GPU_COMMAND_BUFFER_CLIENT_GLES2_CMD_HELPER_AUTOGEN_H_
#define GPU_COMMAND_BUFFER_CLIENT_GLES2_CMD_HELPER_AUTOGEN_H_
@@ -1234,15 +1232,5 @@
c.Init(surface_id);
}
- void GetMultipleIntegervCHROMIUM(
- uint32 pnames_shm_id, uint32 pnames_shm_offset, GLuint count,
- uint32 results_shm_id, uint32 results_shm_offset, GLsizeiptr size) {
- gles2::GetMultipleIntegervCHROMIUM& c =
- GetCmdSpace<gles2::GetMultipleIntegervCHROMIUM>();
- c.Init(
- pnames_shm_id, pnames_shm_offset, count, results_shm_id,
- results_shm_offset, size);
- }
-
#endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_CMD_HELPER_AUTOGEN_H_
diff --git a/gpu/command_buffer/client/gles2_implementation.cc b/gpu/command_buffer/client/gles2_implementation.cc
index 6a215a4..a8f16f9 100644
--- a/gpu/command_buffer/client/gles2_implementation.cc
+++ b/gpu/command_buffer/client/gles2_implementation.cc
@@ -2006,60 +2006,5 @@ void GLES2Implementation::RateLimitOffscreenContextCHROMIUM() {
rate_limit_tokens_.push(helper_->InsertToken());
}
-void GLES2Implementation::GetMultipleIntegervCHROMIUM(
- const GLenum* pnames, GLuint count, GLint* results, GLsizeiptr size) {
- GPU_CLIENT_LOG("[" << this << "] glGetMultipleIntegervCHROMIUM("
- << static_cast<const void*>(pnames) << ", "
- << count << ", " << results << ", " << size << ")");
- GPU_CLIENT_LOG_CODE_BLOCK({
- for (GLuint i = 0; i < count; ++i) {
- GPU_CLIENT_LOG(
- " " << i << ": " << GLES2Util::GetStringGLState(pnames[i]));
- }
- });
- int num_results = 0;
- for (GLuint ii = 0; ii < count; ++ii) {
- int num = util_.GLGetNumValuesReturned(pnames[ii]);
- if (!num) {
- SetGLError(GL_INVALID_ENUM, "glGetMultipleIntegervCHROMIUM: bad pname");
- return;
- }
- num_results += num;
- }
- if (static_cast<size_t>(size) != num_results * sizeof(GLint)) {
- SetGLError(GL_INVALID_VALUE, "glGetMultipleIntegervCHROMIUM: bad size");
- return;
- }
- for (int ii = 0; ii < num_results; ++ii) {
- if (results[ii] != 0) {
- SetGLError(GL_INVALID_VALUE,
- "glGetMultipleIntegervCHROMIUM: results not set to zero.");
- return;
- }
- }
- uint32 size_needed =
- count * sizeof(pnames[0]) + num_results * sizeof(results[0]);
- void* buffer = transfer_buffer_.Alloc(size_needed);
- GLenum* pnames_buffer = static_cast<GLenum*>(buffer);
- void* results_buffer = pnames_buffer + count;
- memcpy(pnames_buffer, pnames, count * sizeof(GLenum));
- memset(results_buffer, 0, num_results * sizeof(GLint));
- helper_->GetMultipleIntegervCHROMIUM(
- transfer_buffer_id_, transfer_buffer_.GetOffset(pnames_buffer),
- count,
- transfer_buffer_id_, transfer_buffer_.GetOffset(results_buffer),
- size);
- WaitForCmd();
- memcpy(results, results_buffer, size);
- // TODO(gman): We should be able to free without a token.
- transfer_buffer_.FreePendingToken(buffer, helper_->InsertToken());
- GPU_CLIENT_LOG(" returned");
- GPU_CLIENT_LOG_CODE_BLOCK({
- for (int i = 0; i < num_results; ++i) {
- GPU_CLIENT_LOG(" " << i << ": " << (results[i]));
- }
- });
-}
-
} // namespace gles2
} // namespace gpu
diff --git a/gpu/command_buffer/client/gles2_implementation_autogen.h b/gpu/command_buffer/client/gles2_implementation_autogen.h
index 55e8248..eb148a2 100644
--- a/gpu/command_buffer/client/gles2_implementation_autogen.h
+++ b/gpu/command_buffer/client/gles2_implementation_autogen.h
@@ -2,9 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-// This file is auto-generated from
-// gpu/command_buffer/build_gles2_cmd_buffer.py
-// DO NOT EDIT!
+// This file is auto-generated. DO NOT EDIT!
// This file is included by gles2_implementation.h to declare the
// GL api functions.
@@ -1229,8 +1227,5 @@ void SetSurfaceCHROMIUM(GLint surface_id) {
helper_->SetSurfaceCHROMIUM(surface_id);
}
-void GetMultipleIntegervCHROMIUM(
- const GLenum* pnames, GLuint count, GLint* results, GLsizeiptr size);
-
#endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_AUTOGEN_H_
diff --git a/gpu/command_buffer/client/gles2_implementation_unittest.cc b/gpu/command_buffer/client/gles2_implementation_unittest.cc
index 0b81479..68f2e6b 100644
--- a/gpu/command_buffer/client/gles2_implementation_unittest.cc
+++ b/gpu/command_buffer/client/gles2_implementation_unittest.cc
@@ -137,10 +137,6 @@ ACTION_P2(SetMemoryAtOffset, offset, obj) {
memcpy(static_cast<char*>(arg0) + offset, &obj, sizeof(obj));
}
-ACTION_P3(SetMemoryAtOffsetFromArray, offset, array, size) {
- memcpy(static_cast<char*>(arg0) + offset, array, size);
-}
-
// Used to help set the transfer buffer result to SizedResult of a single value.
template <typename T>
class SizedResultHelper {
@@ -219,22 +215,11 @@ class GLES2ImplementationTest : public testing::Test {
Buffer ring_buffer = command_buffer_->GetRingBuffer();
commands_ = static_cast<CommandBufferEntry*>(ring_buffer.ptr) +
command_buffer_->GetState().put_offset;
- ClearCommands();
}
virtual void TearDown() {
}
- void ClearCommands() {
- Buffer ring_buffer = command_buffer_->GetRingBuffer();
- memset(ring_buffer.ptr, kInitialValue, ring_buffer.size);
- }
-
- bool NoCommandsWritten() {
- return static_cast<const uint8*>(static_cast<const void*>(commands_))[0] ==
- kInitialValue;
- }
-
void ClearTransferBuffer() {
memset(transfer_buffer_.ptr, kInitialValue, kTransferBufferSize);
}
@@ -991,108 +976,6 @@ TEST_F(GLES2ImplementationTest, MapUnmapTexSubImage2DCHROMIUMBadArgs) {
EXPECT_EQ(static_cast<GLenum>(GL_INVALID_VALUE), gl_->GetError());
}
-TEST_F(GLES2ImplementationTest, GetMultipleIntegervCHROMIUMValidArgs) {
- const GLenum pnames[] = {
- GL_DEPTH_WRITEMASK,
- GL_COLOR_WRITEMASK,
- GL_STENCIL_WRITEMASK,
- };
- const GLint num_results = 6;
- GLint results[num_results + 1];
- struct Cmds {
- GetMultipleIntegervCHROMIUM get_multiple;
- cmd::SetToken set_token;
- };
- const GLsizei kNumPnames = arraysize(pnames);
- const GLsizeiptr kResultsSize = num_results * sizeof(results[0]);
- const uint32 kPnamesOffset = GLES2Implementation::kStartingOffset;
- const uint32 kResultsOffset = kPnamesOffset + kNumPnames * sizeof(pnames[0]);
- int32 token = 1;
- Cmds expected;
- expected.get_multiple.Init(
- kTransferBufferId, kPnamesOffset, kNumPnames,
- kTransferBufferId, kResultsOffset, kResultsSize);
- expected.set_token.Init(token++);
-
- const GLint kSentinel = 0x12345678;
- memset(results, 0, sizeof(results));
- results[num_results] = kSentinel;
- const GLint returned_results[] = {
- 1, 0, 1, 0, 1, -1,
- };
- // One call to flush to wait for results
- EXPECT_CALL(*command_buffer_, OnFlush(_))
- .WillOnce(SetMemoryAtOffsetFromArray(
- kResultsOffset, returned_results, sizeof(returned_results)))
- .WillOnce(SetMemory(GLuint(GL_NO_ERROR)))
- .RetiresOnSaturation();
-
- gl_->GetMultipleIntegervCHROMIUM(
- &pnames[0], kNumPnames, &results[0], kResultsSize);
- EXPECT_EQ(0, memcmp(&expected, commands_, sizeof(expected)));
- EXPECT_EQ(0, memcmp(&returned_results, results, sizeof(returned_results)));
- EXPECT_EQ(kSentinel, results[num_results]);
- EXPECT_EQ(static_cast<GLenum>(GL_NO_ERROR), gl_->GetError());
-}
-
-TEST_F(GLES2ImplementationTest, GetMultipleIntegervCHROMIUMBadArgs) {
- GLenum pnames[] = {
- GL_DEPTH_WRITEMASK,
- GL_COLOR_WRITEMASK,
- GL_STENCIL_WRITEMASK,
- };
- const GLint num_results = 6;
- GLint results[num_results + 1];
- const GLsizei kNumPnames = arraysize(pnames);
- const GLsizeiptr kResultsSize = num_results * sizeof(results[0]);
-
- // Calls to flush to wait for GetError
- EXPECT_CALL(*command_buffer_, OnFlush(_))
- .WillOnce(SetMemory(GLuint(GL_NO_ERROR)))
- .WillOnce(SetMemory(GLuint(GL_NO_ERROR)))
- .WillOnce(SetMemory(GLuint(GL_NO_ERROR)))
- .WillOnce(SetMemory(GLuint(GL_NO_ERROR)))
- .RetiresOnSaturation();
-
- const GLint kSentinel = 0x12345678;
- memset(results, 0, sizeof(results));
- results[num_results] = kSentinel;
- // try bad size.
- gl_->GetMultipleIntegervCHROMIUM(
- &pnames[0], kNumPnames, &results[0], kResultsSize + 1);
- EXPECT_TRUE(NoCommandsWritten());
- EXPECT_EQ(static_cast<GLenum>(GL_INVALID_VALUE), gl_->GetError());
- EXPECT_EQ(0, results[0]);
- EXPECT_EQ(kSentinel, results[num_results]);
- // try bad size.
- ClearCommands();
- gl_->GetMultipleIntegervCHROMIUM(
- &pnames[0], kNumPnames, &results[0], kResultsSize - 1);
- EXPECT_TRUE(NoCommandsWritten());
- EXPECT_EQ(static_cast<GLenum>(GL_INVALID_VALUE), gl_->GetError());
- EXPECT_EQ(0, results[0]);
- EXPECT_EQ(kSentinel, results[num_results]);
- // try uncleared results.
- ClearCommands();
- results[2] = 1;
- gl_->GetMultipleIntegervCHROMIUM(
- &pnames[0], kNumPnames, &results[0], kResultsSize);
- EXPECT_TRUE(NoCommandsWritten());
- EXPECT_EQ(static_cast<GLenum>(GL_INVALID_VALUE), gl_->GetError());
- EXPECT_EQ(0, results[0]);
- EXPECT_EQ(kSentinel, results[num_results]);
- // try bad enum results.
- ClearCommands();
- results[2] = 0;
- pnames[1] = GL_TRUE;
- gl_->GetMultipleIntegervCHROMIUM(
- &pnames[0], kNumPnames, &results[0], kResultsSize);
- EXPECT_TRUE(NoCommandsWritten());
- EXPECT_EQ(static_cast<GLenum>(GL_INVALID_ENUM), gl_->GetError());
- EXPECT_EQ(0, results[0]);
- EXPECT_EQ(kSentinel, results[num_results]);
-}
-
} // namespace gles2
} // namespace gpu