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

Unified Diff: gpu/command_buffer/client/gles2_implementation.cc

Issue 1806003: Fix Bug in RingBuffer (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 8 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 | « no previous file | gpu/command_buffer/client/ring_buffer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/command_buffer/client/gles2_implementation.cc
===================================================================
--- gpu/command_buffer/client/gles2_implementation.cc (revision 45958)
+++ gpu/command_buffer/client/gles2_implementation.cc (working copy)
@@ -644,8 +644,9 @@
return;
}
GLsizei shader_id_size = n * sizeof(*shaders);
- void* shader_ids = transfer_buffer_.Alloc(shader_id_size);
- void* shader_data = transfer_buffer_.Alloc(length);
+ char* buffer = transfer_buffer_.AllocTyped<char>(shader_id_size + length);
apatrick_chromium 2010/04/29 22:26:51 char -> int8
+ void* shader_ids = buffer;
+ void* shader_data = buffer + shader_id_size;
memcpy(shader_ids, shaders, shader_id_size);
memcpy(shader_data, binary, length);
helper_->ShaderBinary(
@@ -654,9 +655,7 @@
binaryformat,
transfer_buffer_id_, transfer_buffer_.GetOffset(shader_data),
length);
- int32 token = helper_->InsertToken();
- transfer_buffer_.FreePendingToken(shader_ids, token);
- transfer_buffer_.FreePendingToken(shader_data, token);
+ transfer_buffer_.FreePendingToken(buffer, helper_->InsertToken());
}
void GLES2Implementation::PixelStorei(GLenum pname, GLint param) {
@@ -1145,18 +1144,20 @@
transfer_buffer_id_, transfer_buffer_.GetOffset(buffer),
result_shm_id(), result_shm_offset());
WaitForCmd();
+ if (*result != 0) {
+ // We have to copy 1 row at a time to avoid writing pad bytes.
+ const int8* src = static_cast<const int8*>(buffer);
+ for (GLint yy = 0; yy < num_rows; ++yy) {
+ memcpy(dest, src, unpadded_row_size);
+ dest += padded_row_size;
+ src += padded_row_size;
+ }
+ }
+ transfer_buffer_.FreePendingToken(buffer, helper_->InsertToken());
// If it was not marked as successful exit.
if (*result == 0) {
return;
}
- // We have to copy 1 row at a time to avoid writing pad bytes.
- const int8* src = static_cast<const int8*>(buffer);
- for (GLint yy = 0; yy < num_rows; ++yy) {
- memcpy(dest, src, unpadded_row_size);
- dest += padded_row_size;
- src += padded_row_size;
- }
- transfer_buffer_.FreePendingToken(buffer, helper_->InsertToken());
yoffset += num_rows;
height -= num_rows;
}
@@ -1181,12 +1182,14 @@
transfer_buffer_id_, transfer_buffer_.GetOffset(buffer),
result_shm_id(), result_shm_offset());
WaitForCmd();
+ if (*result != 0) {
+ memcpy(row_dest, buffer, part_size);
+ }
+ transfer_buffer_.FreePendingToken(buffer, helper_->InsertToken());
// If it was not marked as successful exit.
if (*result == 0) {
return;
}
- memcpy(row_dest, buffer, part_size);
- transfer_buffer_.FreePendingToken(buffer, helper_->InsertToken());
row_dest += part_size;
temp_xoffset += num_pixels;
temp_width -= num_pixels;
« no previous file with comments | « no previous file | gpu/command_buffer/client/ring_buffer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698