OLD | NEW |
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 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
197 return streams_.size(); | 197 return streams_.size(); |
198 } | 198 } |
199 | 199 |
200 // Retrieves the matching DataType from a D3D parameter description. | 200 // Retrieves the matching DataType from a D3D parameter description. |
201 static effect_param::DataType GetDataTypeFromD3D( | 201 static effect_param::DataType GetDataTypeFromD3D( |
202 const D3DXPARAMETER_DESC &desc) { | 202 const D3DXPARAMETER_DESC &desc) { |
203 switch (desc.Type) { | 203 switch (desc.Type) { |
204 case D3DXPT_FLOAT: | 204 case D3DXPT_FLOAT: |
205 switch (desc.Class) { | 205 switch (desc.Class) { |
206 case D3DXPC_SCALAR: | 206 case D3DXPC_SCALAR: |
207 return effect_param::FLOAT1; | 207 return effect_param::kFloat1; |
208 case D3DXPC_VECTOR: | 208 case D3DXPC_VECTOR: |
209 switch (desc.Columns) { | 209 switch (desc.Columns) { |
210 case 2: | 210 case 2: |
211 return effect_param::FLOAT2; | 211 return effect_param::kFloat2; |
212 case 3: | 212 case 3: |
213 return effect_param::FLOAT3; | 213 return effect_param::kFloat3; |
214 case 4: | 214 case 4: |
215 return effect_param::FLOAT4; | 215 return effect_param::kFloat4; |
216 default: | 216 default: |
217 return effect_param::UNKNOWN; | 217 return effect_param::kUnknown; |
218 } | 218 } |
219 case D3DXPC_MATRIX_ROWS: | 219 case D3DXPC_MATRIX_ROWS: |
220 case D3DXPC_MATRIX_COLUMNS: | 220 case D3DXPC_MATRIX_COLUMNS: |
221 if (desc.Columns == 4 && desc.Rows == 4) { | 221 if (desc.Columns == 4 && desc.Rows == 4) { |
222 return effect_param::MATRIX4; | 222 return effect_param::kMatrix4; |
223 } else { | 223 } else { |
224 return effect_param::UNKNOWN; | 224 return effect_param::kUnknown; |
225 } | 225 } |
226 default: | 226 default: |
227 return effect_param::UNKNOWN; | 227 return effect_param::kUnknown; |
228 } | 228 } |
229 case D3DXPT_INT: | 229 case D3DXPT_INT: |
230 if (desc.Class == D3DXPC_SCALAR) { | 230 if (desc.Class == D3DXPC_SCALAR) { |
231 return effect_param::INT; | 231 return effect_param::kInt; |
232 } else { | 232 } else { |
233 return effect_param::UNKNOWN; | 233 return effect_param::kUnknown; |
234 } | 234 } |
235 case D3DXPT_BOOL: | 235 case D3DXPT_BOOL: |
236 if (desc.Class == D3DXPC_SCALAR) { | 236 if (desc.Class == D3DXPC_SCALAR) { |
237 return effect_param::BOOL; | 237 return effect_param::kBool; |
238 } else { | 238 } else { |
239 return effect_param::UNKNOWN; | 239 return effect_param::kUnknown; |
240 } | 240 } |
241 case D3DXPT_SAMPLER: | 241 case D3DXPT_SAMPLER: |
242 case D3DXPT_SAMPLER2D: | 242 case D3DXPT_SAMPLER2D: |
243 case D3DXPT_SAMPLER3D: | 243 case D3DXPT_SAMPLER3D: |
244 case D3DXPT_SAMPLERCUBE: | 244 case D3DXPT_SAMPLERCUBE: |
245 if (desc.Class == D3DXPC_OBJECT) { | 245 if (desc.Class == D3DXPC_OBJECT) { |
246 return effect_param::SAMPLER; | 246 return effect_param::kSampler; |
247 } else { | 247 } else { |
248 return effect_param::UNKNOWN; | 248 return effect_param::kUnknown; |
249 } | 249 } |
250 case D3DXPT_TEXTURE: | 250 case D3DXPT_TEXTURE: |
251 case D3DXPT_TEXTURE1D: | 251 case D3DXPT_TEXTURE1D: |
252 case D3DXPT_TEXTURE2D: | 252 case D3DXPT_TEXTURE2D: |
253 case D3DXPT_TEXTURE3D: | 253 case D3DXPT_TEXTURE3D: |
254 case D3DXPT_TEXTURECUBE: | 254 case D3DXPT_TEXTURECUBE: |
255 if (desc.Class == D3DXPC_OBJECT) { | 255 if (desc.Class == D3DXPC_OBJECT) { |
256 return effect_param::TEXTURE; | 256 return effect_param::kTexture; |
257 } else { | 257 } else { |
258 return effect_param::UNKNOWN; | 258 return effect_param::kUnknown; |
259 } | 259 } |
260 default: | 260 default: |
261 return effect_param::UNKNOWN; | 261 return effect_param::kUnknown; |
262 } | 262 } |
263 } | 263 } |
264 | 264 |
265 // Gets a handle to the selected parameter, and wraps it into an | 265 // Gets a handle to the selected parameter, and wraps it into an |
266 // EffectParamD3D9 if successful. | 266 // EffectParamD3D9 if successful. |
267 EffectParamD3D9 *EffectD3D9::CreateParam(unsigned int index) { | 267 EffectParamD3D9 *EffectD3D9::CreateParam(unsigned int index) { |
268 D3DXHANDLE handle = d3d_effect_->GetParameter(NULL, index); | 268 D3DXHANDLE handle = d3d_effect_->GetParameter(NULL, index); |
269 if (!handle) return NULL; | 269 if (!handle) return NULL; |
270 return EffectParamD3D9::Create(this, handle); | 270 return EffectParamD3D9::Create(this, handle); |
271 } | 271 } |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
372 if (effect_) effect_->UnlinkParam(this); | 372 if (effect_) effect_->UnlinkParam(this); |
373 } | 373 } |
374 | 374 |
375 EffectParamD3D9 *EffectParamD3D9::Create(EffectD3D9 *effect, | 375 EffectParamD3D9 *EffectParamD3D9::Create(EffectD3D9 *effect, |
376 D3DXHANDLE handle) { | 376 D3DXHANDLE handle) { |
377 DCHECK(effect); | 377 DCHECK(effect); |
378 D3DXPARAMETER_DESC desc; | 378 D3DXPARAMETER_DESC desc; |
379 HR(effect->d3d_effect_->GetParameterDesc(handle, &desc)); | 379 HR(effect->d3d_effect_->GetParameterDesc(handle, &desc)); |
380 effect_param::DataType data_type = GetDataTypeFromD3D(desc); | 380 effect_param::DataType data_type = GetDataTypeFromD3D(desc); |
381 EffectParamD3D9 *param = new EffectParamD3D9(data_type, effect, handle); | 381 EffectParamD3D9 *param = new EffectParamD3D9(data_type, effect, handle); |
382 if (data_type == effect_param::SAMPLER) { | 382 if (data_type == effect_param::kSampler) { |
383 ID3DXConstantTable *table = effect->fs_constant_table_; | 383 ID3DXConstantTable *table = effect->fs_constant_table_; |
384 DCHECK(table); | 384 DCHECK(table); |
385 D3DXHANDLE sampler_handle = table->GetConstantByName(NULL, desc.Name); | 385 D3DXHANDLE sampler_handle = table->GetConstantByName(NULL, desc.Name); |
386 if (sampler_handle) { | 386 if (sampler_handle) { |
387 D3DXCONSTANT_DESC desc_array[kMaxSamplerUnits]; | 387 D3DXCONSTANT_DESC desc_array[kMaxSamplerUnits]; |
388 unsigned int num_desc = kMaxSamplerUnits; | 388 unsigned int num_desc = kMaxSamplerUnits; |
389 table->GetConstantDesc(sampler_handle, desc_array, &num_desc); | 389 table->GetConstantDesc(sampler_handle, desc_array, &num_desc); |
390 // We have no good way of querying how many descriptions would really be | 390 // We have no good way of querying how many descriptions would really be |
391 // returned as we're capping the number to kMaxSamplerUnits (which should | 391 // returned as we're capping the number to kMaxSamplerUnits (which should |
392 // be more than sufficient). If however we do end up with the max number | 392 // be more than sufficient). If however we do end up with the max number |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
463 // Sets the data into the D3D effect parameter, using the appropriate D3D call. | 463 // Sets the data into the D3D effect parameter, using the appropriate D3D call. |
464 bool EffectParamD3D9::SetData(GAPID3D9 *gapi, | 464 bool EffectParamD3D9::SetData(GAPID3D9 *gapi, |
465 unsigned int size, | 465 unsigned int size, |
466 const void * data) { | 466 const void * data) { |
467 if (!effect_) | 467 if (!effect_) |
468 return false; | 468 return false; |
469 ID3DXEffect *d3d_effect = effect_->d3d_effect_; | 469 ID3DXEffect *d3d_effect = effect_->d3d_effect_; |
470 effect_param::DataType type = data_type(); | 470 effect_param::DataType type = data_type(); |
471 if (size < effect_param::GetDataSize(type)) return false; | 471 if (size < effect_param::GetDataSize(type)) return false; |
472 switch (type) { | 472 switch (type) { |
473 case effect_param::FLOAT1: | 473 case effect_param::kFloat1: |
474 HR(d3d_effect->SetFloat(handle_, *static_cast<const float *>(data))); | 474 HR(d3d_effect->SetFloat(handle_, *static_cast<const float *>(data))); |
475 break; | 475 break; |
476 case effect_param::FLOAT2: | 476 case effect_param::kFloat2: |
477 HR(d3d_effect->SetFloatArray(handle_, static_cast<const float *>(data), | 477 HR(d3d_effect->SetFloatArray(handle_, static_cast<const float *>(data), |
478 2)); | 478 2)); |
479 break; | 479 break; |
480 case effect_param::FLOAT3: | 480 case effect_param::kFloat3: |
481 HR(d3d_effect->SetFloatArray(handle_, static_cast<const float *>(data), | 481 HR(d3d_effect->SetFloatArray(handle_, static_cast<const float *>(data), |
482 3)); | 482 3)); |
483 break; | 483 break; |
484 case effect_param::FLOAT4: | 484 case effect_param::kFloat4: |
485 HR(d3d_effect->SetFloatArray(handle_, static_cast<const float *>(data), | 485 HR(d3d_effect->SetFloatArray(handle_, static_cast<const float *>(data), |
486 4)); | 486 4)); |
487 break; | 487 break; |
488 case effect_param::MATRIX4: | 488 case effect_param::kMatrix4: |
489 HR(d3d_effect->SetMatrix(handle_, | 489 HR(d3d_effect->SetMatrix(handle_, |
490 reinterpret_cast<const D3DXMATRIX *>(data))); | 490 reinterpret_cast<const D3DXMATRIX *>(data))); |
491 break; | 491 break; |
492 case effect_param::INT: | 492 case effect_param::kInt: |
493 HR(d3d_effect->SetInt(handle_, *static_cast<const int *>(data))); | 493 HR(d3d_effect->SetInt(handle_, *static_cast<const int *>(data))); |
494 break; | 494 break; |
495 case effect_param::BOOL: | 495 case effect_param::kBool: |
496 HR(d3d_effect->SetBool(handle_, *static_cast<const bool *>(data)?1:0)); | 496 HR(d3d_effect->SetBool(handle_, *static_cast<const bool *>(data)?1:0)); |
497 break; | 497 break; |
498 case effect_param::SAMPLER: { | 498 case effect_param::kSampler: { |
499 ResourceID id = *static_cast<const ResourceID *>(data); | 499 ResourceId id = *static_cast<const ResourceId *>(data); |
500 for (unsigned int i = 0; i < sampler_unit_count_; ++i) { | 500 for (unsigned int i = 0; i < sampler_unit_count_; ++i) { |
501 effect_->samplers_[sampler_units_[i]] = id; | 501 effect_->samplers_[sampler_units_[i]] = id; |
502 } | 502 } |
503 break; | 503 break; |
504 } | 504 } |
505 case effect_param::TEXTURE: { | 505 case effect_param::kTexture: { |
506 // TODO(rlp): finish | 506 // TODO(rlp): finish |
507 break; | 507 break; |
508 } | 508 } |
509 default: | 509 default: |
510 DLOG(ERROR) << "Invalid parameter type."; | 510 DLOG(ERROR) << "Invalid parameter type."; |
511 return false; | 511 return false; |
512 } | 512 } |
513 if (effect_ == gapi->current_effect()) { | 513 if (effect_ == gapi->current_effect()) { |
514 effect_->sync_parameters_ = true; | 514 effect_->sync_parameters_ = true; |
515 } | 515 } |
516 return true; | 516 return true; |
517 } | 517 } |
518 | 518 |
519 // Calls EffectD3D9::Create, and assign the result to the resource ID. | 519 // Calls EffectD3D9::Create, and assign the result to the resource ID. |
520 // If changing the current effect, dirty it. | 520 // If changing the current effect, dirty it. |
521 BufferSyncInterface::ParseError GAPID3D9::CreateEffect( | 521 BufferSyncInterface::ParseError GAPID3D9::CreateEffect( |
522 ResourceID id, | 522 ResourceId id, |
523 unsigned int size, | 523 unsigned int size, |
524 const void *data) { | 524 const void *data) { |
525 if (id == current_effect_id_) DirtyEffect(); | 525 if (id == current_effect_id_) DirtyEffect(); |
526 // Even though Assign would Destroy the effect at id, we do it explicitly in | 526 // Even though Assign would Destroy the effect at id, we do it explicitly in |
527 // case the creation fails. | 527 // case the creation fails. |
528 effects_.Destroy(id); | 528 effects_.Destroy(id); |
529 // Data is vp_main \0 fp_main \0 effect_text. | 529 // Data is vp_main \0 fp_main \0 effect_text. |
530 String vertex_program_entry; | 530 String vertex_program_entry; |
531 String fragment_program_entry; | 531 String fragment_program_entry; |
532 String effect_code; | 532 String effect_code; |
533 if (!ParseEffectData(size, data, | 533 if (!ParseEffectData(size, data, |
534 &vertex_program_entry, | 534 &vertex_program_entry, |
535 &fragment_program_entry, | 535 &fragment_program_entry, |
536 &effect_code)) { | 536 &effect_code)) { |
537 return BufferSyncInterface::kParseInvalidArguments; | 537 return BufferSyncInterface::kParseInvalidArguments; |
538 } | 538 } |
539 EffectD3D9 * effect = EffectD3D9::Create(this, effect_code, | 539 EffectD3D9 * effect = EffectD3D9::Create(this, effect_code, |
540 vertex_program_entry, | 540 vertex_program_entry, |
541 fragment_program_entry); | 541 fragment_program_entry); |
542 if (!effect) return BufferSyncInterface::kParseInvalidArguments; | 542 if (!effect) return BufferSyncInterface::kParseInvalidArguments; |
543 effects_.Assign(id, effect); | 543 effects_.Assign(id, effect); |
544 return BufferSyncInterface::kParseNoError; | 544 return BufferSyncInterface::kParseNoError; |
545 } | 545 } |
546 | 546 |
547 // Destroys the Effect resource. | 547 // Destroys the Effect resource. |
548 // If destroying the current effect, dirty it. | 548 // If destroying the current effect, dirty it. |
549 BufferSyncInterface::ParseError GAPID3D9::DestroyEffect(ResourceID id) { | 549 BufferSyncInterface::ParseError GAPID3D9::DestroyEffect(ResourceId id) { |
550 if (id == current_effect_id_) DirtyEffect(); | 550 if (id == current_effect_id_) DirtyEffect(); |
551 return effects_.Destroy(id) ? | 551 return effects_.Destroy(id) ? |
552 BufferSyncInterface::kParseNoError : | 552 BufferSyncInterface::kParseNoError : |
553 BufferSyncInterface::kParseInvalidArguments; | 553 BufferSyncInterface::kParseInvalidArguments; |
554 } | 554 } |
555 | 555 |
556 // Sets the current effect ID, dirtying the current effect. | 556 // Sets the current effect ID, dirtying the current effect. |
557 BufferSyncInterface::ParseError GAPID3D9::SetEffect(ResourceID id) { | 557 BufferSyncInterface::ParseError GAPID3D9::SetEffect(ResourceId id) { |
558 DirtyEffect(); | 558 DirtyEffect(); |
559 current_effect_id_ = id; | 559 current_effect_id_ = id; |
560 return BufferSyncInterface::kParseNoError; | 560 return BufferSyncInterface::kParseNoError; |
561 } | 561 } |
562 | 562 |
563 // Gets the param count from the effect and store it in the memory buffer. | 563 // Gets the param count from the effect and store it in the memory buffer. |
564 BufferSyncInterface::ParseError GAPID3D9::GetParamCount( | 564 BufferSyncInterface::ParseError GAPID3D9::GetParamCount( |
565 ResourceID id, | 565 ResourceId id, |
566 unsigned int size, | 566 unsigned int size, |
567 void *data) { | 567 void *data) { |
568 EffectD3D9 *effect = effects_.Get(id); | 568 EffectD3D9 *effect = effects_.Get(id); |
569 if (!effect || size < sizeof(Uint32)) // NOLINT | 569 if (!effect || size < sizeof(Uint32)) // NOLINT |
570 return BufferSyncInterface::kParseInvalidArguments; | 570 return BufferSyncInterface::kParseInvalidArguments; |
571 *static_cast<Uint32 *>(data) = effect->GetParamCount(); | 571 *static_cast<Uint32 *>(data) = effect->GetParamCount(); |
572 return BufferSyncInterface::kParseNoError; | 572 return BufferSyncInterface::kParseNoError; |
573 } | 573 } |
574 | 574 |
575 BufferSyncInterface::ParseError GAPID3D9::CreateParam( | 575 BufferSyncInterface::ParseError GAPID3D9::CreateParam( |
576 ResourceID param_id, | 576 ResourceId param_id, |
577 ResourceID effect_id, | 577 ResourceId effect_id, |
578 unsigned int index) { | 578 unsigned int index) { |
579 EffectD3D9 *effect = effects_.Get(effect_id); | 579 EffectD3D9 *effect = effects_.Get(effect_id); |
580 if (!effect) return BufferSyncInterface::kParseInvalidArguments; | 580 if (!effect) return BufferSyncInterface::kParseInvalidArguments; |
581 EffectParamD3D9 *param = effect->CreateParam(index); | 581 EffectParamD3D9 *param = effect->CreateParam(index); |
582 if (!param) return BufferSyncInterface::kParseInvalidArguments; | 582 if (!param) return BufferSyncInterface::kParseInvalidArguments; |
583 effect_params_.Assign(param_id, param); | 583 effect_params_.Assign(param_id, param); |
584 return BufferSyncInterface::kParseNoError; | 584 return BufferSyncInterface::kParseNoError; |
585 } | 585 } |
586 | 586 |
587 BufferSyncInterface::ParseError GAPID3D9::CreateParamByName( | 587 BufferSyncInterface::ParseError GAPID3D9::CreateParamByName( |
588 ResourceID param_id, | 588 ResourceId param_id, |
589 ResourceID effect_id, | 589 ResourceId effect_id, |
590 unsigned int size, | 590 unsigned int size, |
591 const void *name) { | 591 const void *name) { |
592 EffectD3D9 *effect = effects_.Get(effect_id); | 592 EffectD3D9 *effect = effects_.Get(effect_id); |
593 if (!effect) return BufferSyncInterface::kParseInvalidArguments; | 593 if (!effect) return BufferSyncInterface::kParseInvalidArguments; |
594 std::string string_name(static_cast<const char *>(name), size); | 594 std::string string_name(static_cast<const char *>(name), size); |
595 EffectParamD3D9 *param = effect->CreateParamByName(string_name.c_str()); | 595 EffectParamD3D9 *param = effect->CreateParamByName(string_name.c_str()); |
596 if (!param) return BufferSyncInterface::kParseInvalidArguments; | 596 if (!param) return BufferSyncInterface::kParseInvalidArguments; |
597 effect_params_.Assign(param_id, param); | 597 effect_params_.Assign(param_id, param); |
598 return BufferSyncInterface::kParseNoError; | 598 return BufferSyncInterface::kParseNoError; |
599 } | 599 } |
600 | 600 |
601 BufferSyncInterface::ParseError GAPID3D9::DestroyParam(ResourceID id) { | 601 BufferSyncInterface::ParseError GAPID3D9::DestroyParam(ResourceId id) { |
602 return effect_params_.Destroy(id) ? | 602 return effect_params_.Destroy(id) ? |
603 BufferSyncInterface::kParseNoError : | 603 BufferSyncInterface::kParseNoError : |
604 BufferSyncInterface::kParseInvalidArguments; | 604 BufferSyncInterface::kParseInvalidArguments; |
605 } | 605 } |
606 | 606 |
607 BufferSyncInterface::ParseError GAPID3D9::SetParamData( | 607 BufferSyncInterface::ParseError GAPID3D9::SetParamData( |
608 ResourceID id, | 608 ResourceId id, |
609 unsigned int size, | 609 unsigned int size, |
610 const void *data) { | 610 const void *data) { |
611 EffectParamD3D9 *param = effect_params_.Get(id); | 611 EffectParamD3D9 *param = effect_params_.Get(id); |
612 if (!param) return BufferSyncInterface::kParseInvalidArguments; | 612 if (!param) return BufferSyncInterface::kParseInvalidArguments; |
613 return param->SetData(this, size, data) ? | 613 return param->SetData(this, size, data) ? |
614 BufferSyncInterface::kParseNoError : | 614 BufferSyncInterface::kParseNoError : |
615 BufferSyncInterface::kParseInvalidArguments; | 615 BufferSyncInterface::kParseInvalidArguments; |
616 } | 616 } |
617 | 617 |
618 BufferSyncInterface::ParseError GAPID3D9::GetParamDesc( | 618 BufferSyncInterface::ParseError GAPID3D9::GetParamDesc( |
619 ResourceID id, | 619 ResourceId id, |
620 unsigned int size, | 620 unsigned int size, |
621 void *data) { | 621 void *data) { |
622 EffectParamD3D9 *param = effect_params_.Get(id); | 622 EffectParamD3D9 *param = effect_params_.Get(id); |
623 if (!param) return BufferSyncInterface::kParseInvalidArguments; | 623 if (!param) return BufferSyncInterface::kParseInvalidArguments; |
624 return param->GetDesc(size, data) ? | 624 return param->GetDesc(size, data) ? |
625 BufferSyncInterface::kParseNoError : | 625 BufferSyncInterface::kParseNoError : |
626 BufferSyncInterface::kParseInvalidArguments; | 626 BufferSyncInterface::kParseInvalidArguments; |
627 } | 627 } |
628 | 628 |
629 // Gets the stream count from the effect and stores it in the memory buffer. | 629 // Gets the stream count from the effect and stores it in the memory buffer. |
630 BufferSyncInterface::ParseError GAPID3D9::GetStreamCount( | 630 BufferSyncInterface::ParseError GAPID3D9::GetStreamCount( |
631 ResourceID id, | 631 ResourceId id, |
632 unsigned int size, | 632 unsigned int size, |
633 void *data) { | 633 void *data) { |
634 EffectD3D9 *effect = effects_.Get(id); | 634 EffectD3D9 *effect = effects_.Get(id); |
635 if (!effect || size < sizeof(Uint32)) // NOLINT | 635 if (!effect || size < sizeof(Uint32)) // NOLINT |
636 return BufferSyncInterface::kParseInvalidArguments; | 636 return BufferSyncInterface::kParseInvalidArguments; |
637 *static_cast<Uint32 *>(data) = effect->GetStreamCount(); | 637 *static_cast<Uint32 *>(data) = effect->GetStreamCount(); |
638 return BufferSyncInterface::kParseNoError; | 638 return BufferSyncInterface::kParseNoError; |
639 } | 639 } |
640 | 640 |
641 BufferSyncInterface::ParseError GAPID3D9::GetStreamDesc( | 641 BufferSyncInterface::ParseError GAPID3D9::GetStreamDesc( |
642 ResourceID id, | 642 ResourceId id, |
643 unsigned int index, | 643 unsigned int index, |
644 unsigned int size, | 644 unsigned int size, |
645 void *data) { | 645 void *data) { |
646 EffectD3D9 *effect = effects_.Get(id); | 646 EffectD3D9 *effect = effects_.Get(id); |
647 if (!effect) return BufferSyncInterface::kParseInvalidArguments; | 647 if (!effect) return BufferSyncInterface::kParseInvalidArguments; |
648 return effect->GetStreamDesc(index, size, data) ? | 648 return effect->GetStreamDesc(index, size, data) ? |
649 BufferSyncInterface::kParseNoError : | 649 BufferSyncInterface::kParseNoError : |
650 BufferSyncInterface::kParseInvalidArguments; | 650 BufferSyncInterface::kParseInvalidArguments; |
651 } | 651 } |
652 | 652 |
(...skipping 13 matching lines...) Expand all Loading... |
666 DCHECK(validate_effect_); | 666 DCHECK(validate_effect_); |
667 DCHECK(!current_effect_); | 667 DCHECK(!current_effect_); |
668 current_effect_ = effects_.Get(current_effect_id_); | 668 current_effect_ = effects_.Get(current_effect_id_); |
669 if (!current_effect_) return false; | 669 if (!current_effect_) return false; |
670 validate_effect_ = false; | 670 validate_effect_ = false; |
671 return current_effect_->Begin(this); | 671 return current_effect_->Begin(this); |
672 } | 672 } |
673 | 673 |
674 } // namespace command_buffer | 674 } // namespace command_buffer |
675 } // namespace o3d | 675 } // namespace o3d |
OLD | NEW |