| 385 | } |
| 386 | |
| 387 | HSampler GetMaterialSampler(HMaterial material, uint32_t unit) |
| 388 | { |
| 389 | if (unit < material->m_Samplers.Size()) |
| 390 | { |
| 391 | return &material->m_Samplers[unit]; |
| 392 | } |
| 393 | return 0; |
| 394 | } |
| 395 | |
| 396 | bool GetMaterialConstantNameHash(HMaterial material, uint32_t index, dmhash_t* out_name_hash) |
| 397 | { |
no test coverage detected