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

Side by Side Diff: command_buffer/service/cross/gapi_decoder.cc

Issue 222017: Fix to allow NOOP to work again. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/o3d/
Patch Set: Created 11 years, 2 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2009, Google Inc. 2 * Copyright 2009, Google Inc.
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 // by a (malicious) client at any time, so if validation has to happen, it 83 // by a (malicious) client at any time, so if validation has to happen, it
84 // should operate on a copy of them. 84 // should operate on a copy of them.
85 BufferSyncInterface::ParseError GAPIDecoder::DoCommand( 85 BufferSyncInterface::ParseError GAPIDecoder::DoCommand(
86 unsigned int command, 86 unsigned int command,
87 unsigned int arg_count, 87 unsigned int arg_count,
88 const void* cmd_data) { 88 const void* cmd_data) {
89 if (command < arraysize(g_command_info)) { 89 if (command < arraysize(g_command_info)) {
90 const CommandInfo& info = g_command_info[command]; 90 const CommandInfo& info = g_command_info[command];
91 unsigned int info_arg_count = static_cast<unsigned int>(info.arg_count); 91 unsigned int info_arg_count = static_cast<unsigned int>(info.arg_count);
92 if ((info.arg_flags == cmd::kFixed && arg_count == info_arg_count) || 92 if ((info.arg_flags == cmd::kFixed && arg_count == info_arg_count) ||
93 (info.arg_flags == cmd::kAtLeastN && arg_count > info_arg_count)) { 93 (info.arg_flags == cmd::kAtLeastN && arg_count >= info_arg_count)) {
94 switch (command) { 94 switch (command) {
95 #define O3D_COMMAND_BUFFER_CMD_OP(name) \ 95 #define O3D_COMMAND_BUFFER_CMD_OP(name) \
96 case cmd::name::kCmdId: \ 96 case cmd::name::kCmdId: \
97 return Handle ## name( \ 97 return Handle ## name( \
98 arg_count, \ 98 arg_count, \
99 *static_cast<const cmd::name*>(cmd_data)); \ 99 *static_cast<const cmd::name*>(cmd_data)); \
100 100
101 O3D_COMMAND_BUFFER_CMDS 101 O3D_COMMAND_BUFFER_CMDS
102 102
103 #undef O3D_COMMAND_BUFFER_CMD_OP 103 #undef O3D_COMMAND_BUFFER_CMD_OP
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 183
184 BufferSyncInterface::ParseError GAPIDecoder::HandleDestroyVertexBuffer( 184 BufferSyncInterface::ParseError GAPIDecoder::HandleDestroyVertexBuffer(
185 uint32 arg_count, 185 uint32 arg_count,
186 const cmd::DestroyVertexBuffer& args) { 186 const cmd::DestroyVertexBuffer& args) {
187 return gapi_->DestroyVertexBuffer(args.id); 187 return gapi_->DestroyVertexBuffer(args.id);
188 } 188 }
189 189
190 BufferSyncInterface::ParseError GAPIDecoder::HandleSetVertexBufferDataImmediate( 190 BufferSyncInterface::ParseError GAPIDecoder::HandleSetVertexBufferDataImmediate(
191 uint32 arg_count, 191 uint32 arg_count,
192 const cmd::SetVertexBufferDataImmediate& args) { 192 const cmd::SetVertexBufferDataImmediate& args) {
193 uint32 size = ImmediateDataSize(arg_count, args);
194 if (size == 0) {
195 return ParseError::kParseNoError;
196 }
193 return gapi_->SetVertexBufferData(args.id, args.offset, 197 return gapi_->SetVertexBufferData(args.id, args.offset,
194 ImmediateDataSize(arg_count, args), 198 size,
195 AddressAfterStruct(args)); 199 AddressAfterStruct(args));
196 } 200 }
197 201
198 BufferSyncInterface::ParseError GAPIDecoder::HandleSetVertexBufferData( 202 BufferSyncInterface::ParseError GAPIDecoder::HandleSetVertexBufferData(
199 uint32 arg_count, 203 uint32 arg_count,
200 const cmd::SetVertexBufferData& args) { 204 const cmd::SetVertexBufferData& args) {
201 // Pull out some values so they can't be changed by another thread after we've 205 // Pull out some values so they can't be changed by another thread after we've
202 // validated them. 206 // validated them.
203 uint32 size = args.size; 207 uint32 size = args.size;
204 void *data = GetAddressAndCheckSize(args.shared_memory.id, 208 void *data = GetAddressAndCheckSize(args.shared_memory.id,
(...skipping 24 matching lines...) Expand all
229 233
230 BufferSyncInterface::ParseError GAPIDecoder::HandleDestroyIndexBuffer( 234 BufferSyncInterface::ParseError GAPIDecoder::HandleDestroyIndexBuffer(
231 uint32 arg_count, 235 uint32 arg_count,
232 const cmd::DestroyIndexBuffer& args) { 236 const cmd::DestroyIndexBuffer& args) {
233 return gapi_->DestroyIndexBuffer(args.id); 237 return gapi_->DestroyIndexBuffer(args.id);
234 } 238 }
235 239
236 BufferSyncInterface::ParseError GAPIDecoder::HandleSetIndexBufferDataImmediate( 240 BufferSyncInterface::ParseError GAPIDecoder::HandleSetIndexBufferDataImmediate(
237 uint32 arg_count, 241 uint32 arg_count,
238 const cmd::SetIndexBufferDataImmediate& args) { 242 const cmd::SetIndexBufferDataImmediate& args) {
239 return gapi_->SetIndexBufferData(args.id, args.offset, 243 uint32 size = ImmediateDataSize(arg_count, args);
240 ImmediateDataSize(arg_count, args), 244 if (size == 0) {
245 return ParseError::kParseNoError;
246 }
247 return gapi_->SetIndexBufferData(args.id, args.offset, size,
241 AddressAfterStruct(args)); 248 AddressAfterStruct(args));
242 } 249 }
243 250
244 BufferSyncInterface::ParseError GAPIDecoder::HandleSetIndexBufferData( 251 BufferSyncInterface::ParseError GAPIDecoder::HandleSetIndexBufferData(
245 uint32 arg_count, 252 uint32 arg_count,
246 const cmd::SetIndexBufferData& args) { 253 const cmd::SetIndexBufferData& args) {
247 // Pull out some values so they can't be changed by another thread after we've 254 // Pull out some values so they can't be changed by another thread after we've
248 // validated them. 255 // validated them.
249 uint32 size = args.size; 256 uint32 size = args.size;
250 void *data = GetAddressAndCheckSize(args.shared_memory.id, 257 void *data = GetAddressAndCheckSize(args.shared_memory.id,
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
347 354
348 BufferSyncInterface::ParseError GAPIDecoder::HandleCreateEffectImmediate( 355 BufferSyncInterface::ParseError GAPIDecoder::HandleCreateEffectImmediate(
349 uint32 arg_count, 356 uint32 arg_count,
350 const cmd::CreateEffectImmediate& args) { 357 const cmd::CreateEffectImmediate& args) {
351 // Pull out some values so they can't be changed by another thread after we've 358 // Pull out some values so they can't be changed by another thread after we've
352 // validated them. 359 // validated them.
353 uint32 size = args.size; 360 uint32 size = args.size;
354 uint32 data_size = ImmediateDataSize(arg_count, args); 361 uint32 data_size = ImmediateDataSize(arg_count, args);
355 if (size > data_size) 362 if (size > data_size)
356 return BufferSyncInterface::kParseInvalidArguments; 363 return BufferSyncInterface::kParseInvalidArguments;
364 if (data_size == 0) {
365 return ParseError::kParseNoError;
366 }
357 return gapi_->CreateEffect(args.id, size, AddressAfterStruct(args)); 367 return gapi_->CreateEffect(args.id, size, AddressAfterStruct(args));
358 } 368 }
359 369
360 BufferSyncInterface::ParseError GAPIDecoder::HandleDestroyEffect( 370 BufferSyncInterface::ParseError GAPIDecoder::HandleDestroyEffect(
361 uint32 arg_count, 371 uint32 arg_count,
362 const cmd::DestroyEffect& args) { 372 const cmd::DestroyEffect& args) {
363 return gapi_->DestroyEffect(args.id); 373 return gapi_->DestroyEffect(args.id);
364 } 374 }
365 375
366 BufferSyncInterface::ParseError GAPIDecoder::HandleSetEffect( 376 BufferSyncInterface::ParseError GAPIDecoder::HandleSetEffect(
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
404 414
405 BufferSyncInterface::ParseError GAPIDecoder::HandleCreateParamByNameImmediate( 415 BufferSyncInterface::ParseError GAPIDecoder::HandleCreateParamByNameImmediate(
406 uint32 arg_count, 416 uint32 arg_count,
407 const cmd::CreateParamByNameImmediate& args) { 417 const cmd::CreateParamByNameImmediate& args) {
408 // Pull out some values so they can't be changed by another thread after we've 418 // Pull out some values so they can't be changed by another thread after we've
409 // validated them. 419 // validated them.
410 uint32 size = args.size; 420 uint32 size = args.size;
411 uint32 data_size = ImmediateDataSize(arg_count, args); 421 uint32 data_size = ImmediateDataSize(arg_count, args);
412 if (size > data_size) 422 if (size > data_size)
413 return BufferSyncInterface::kParseInvalidArguments; 423 return BufferSyncInterface::kParseInvalidArguments;
424 if (data_size == 0) {
425 return ParseError::kParseNoError;
426 }
414 return gapi_->CreateParamByName(args.param_id, args.effect_id, size, 427 return gapi_->CreateParamByName(args.param_id, args.effect_id, size,
415 AddressAfterStruct(args)); 428 AddressAfterStruct(args));
416 } 429 }
417 430
418 BufferSyncInterface::ParseError GAPIDecoder::HandleDestroyParam( 431 BufferSyncInterface::ParseError GAPIDecoder::HandleDestroyParam(
419 uint32 arg_count, 432 uint32 arg_count,
420 const cmd::DestroyParam& args) { 433 const cmd::DestroyParam& args) {
421 return gapi_->DestroyParam(args.id); 434 return gapi_->DestroyParam(args.id);
422 } 435 }
423 436
(...skipping 12 matching lines...) Expand all
436 449
437 BufferSyncInterface::ParseError GAPIDecoder::HandleSetParamDataImmediate( 450 BufferSyncInterface::ParseError GAPIDecoder::HandleSetParamDataImmediate(
438 uint32 arg_count, 451 uint32 arg_count,
439 const cmd::SetParamDataImmediate& args) { 452 const cmd::SetParamDataImmediate& args) {
440 // Pull out some values so they can't be changed by another thread after we've 453 // Pull out some values so they can't be changed by another thread after we've
441 // validated them. 454 // validated them.
442 uint32 size = args.size; 455 uint32 size = args.size;
443 uint32 data_size = ImmediateDataSize(arg_count, args); 456 uint32 data_size = ImmediateDataSize(arg_count, args);
444 if (size > data_size) 457 if (size > data_size)
445 return BufferSyncInterface::kParseInvalidArguments; 458 return BufferSyncInterface::kParseInvalidArguments;
459 if (data_size == 0) {
460 return ParseError::kParseNoError;
461 }
446 return gapi_->SetParamData(args.id, size, AddressAfterStruct(args)); 462 return gapi_->SetParamData(args.id, size, AddressAfterStruct(args));
447 } 463 }
448 464
449 BufferSyncInterface::ParseError GAPIDecoder::HandleGetParamDesc( 465 BufferSyncInterface::ParseError GAPIDecoder::HandleGetParamDesc(
450 uint32 arg_count, 466 uint32 arg_count,
451 const cmd::GetParamDesc& args) { 467 const cmd::GetParamDesc& args) {
452 // Pull out some values so they can't be changed by another thread after we've 468 // Pull out some values so they can't be changed by another thread after we've
453 // validated them. 469 // validated them.
454 uint32 size = args.size; 470 uint32 size = args.size;
455 void *data = GetAddressAndCheckSize(args.shared_memory.id, 471 void *data = GetAddressAndCheckSize(args.shared_memory.id,
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
606 unsigned int height = cmd::Height::Get(width_height); 622 unsigned int height = cmd::Height::Get(width_height);
607 unsigned int z = cmd::Z::Get(z_depth); 623 unsigned int z = cmd::Z::Get(z_depth);
608 unsigned int depth = cmd::Depth::Get(z_depth); 624 unsigned int depth = cmd::Depth::Get(z_depth);
609 unsigned int level = cmd::Level::Get(level_face); 625 unsigned int level = cmd::Level::Get(level_face);
610 unsigned int face = cmd::Face::Get(level_face); 626 unsigned int face = cmd::Face::Get(level_face);
611 unsigned int unused = cmd::Unused::Get(level_face); 627 unsigned int unused = cmd::Unused::Get(level_face);
612 uint32 data_size = ImmediateDataSize(arg_count, args); 628 uint32 data_size = ImmediateDataSize(arg_count, args);
613 if (face >= 6 || unused != 0 || 629 if (face >= 6 || unused != 0 ||
614 size > data_size) 630 size > data_size)
615 return BufferSyncInterface::kParseInvalidArguments; 631 return BufferSyncInterface::kParseInvalidArguments;
632 if (data_size == 0) {
633 return ParseError::kParseNoError;
634 }
616 return gapi_->SetTextureData( 635 return gapi_->SetTextureData(
617 args.texture_id, x, y, z, width, height, depth, level, 636 args.texture_id, x, y, z, width, height, depth, level,
618 static_cast<texture::Face>(face), args.row_pitch, 637 static_cast<texture::Face>(face), args.row_pitch,
619 args.slice_pitch, size, AddressAfterStruct(args)); 638 args.slice_pitch, size, AddressAfterStruct(args));
620 } 639 }
621 640
622 BufferSyncInterface::ParseError GAPIDecoder::HandleGetTextureData( 641 BufferSyncInterface::ParseError GAPIDecoder::HandleGetTextureData(
623 uint32 arg_count, 642 uint32 arg_count,
624 const cmd::GetTextureData& args) { 643 const cmd::GetTextureData& args) {
625 namespace cmd = get_texture_data_cmd; 644 namespace cmd = get_texture_data_cmd;
(...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after
929 948
930 BufferSyncInterface::ParseError GAPIDecoder::HandleSetBackSurfaces( 949 BufferSyncInterface::ParseError GAPIDecoder::HandleSetBackSurfaces(
931 uint32 arg_count, 950 uint32 arg_count,
932 const cmd::SetBackSurfaces& args) { 951 const cmd::SetBackSurfaces& args) {
933 gapi_->SetBackSurfaces(); 952 gapi_->SetBackSurfaces();
934 return BufferSyncInterface::kParseNoError; 953 return BufferSyncInterface::kParseNoError;
935 } 954 }
936 955
937 } // namespace command_buffer 956 } // namespace command_buffer
938 } // namespace o3d 957 } // namespace o3d
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698