Lines Matching refs:rootParameterIndex
545 unsigned int rootParameterIndex, D3D12_GPU_VIRTUAL_ADDRESS bufferLocation) { in setGraphicsRootConstantBufferView() argument
546 SkASSERT(rootParameterIndex == in setGraphicsRootConstantBufferView()
549 fCommandList->SetGraphicsRootConstantBufferView(rootParameterIndex, bufferLocation); in setGraphicsRootConstantBufferView()
555 unsigned int rootParameterIndex, D3D12_GPU_VIRTUAL_ADDRESS bufferLocation) { in setComputeRootConstantBufferView() argument
556 SkASSERT(rootParameterIndex == in setComputeRootConstantBufferView()
559 fCommandList->SetComputeRootConstantBufferView(rootParameterIndex, bufferLocation); in setComputeRootConstantBufferView()
565 unsigned int rootParameterIndex, D3D12_GPU_DESCRIPTOR_HANDLE baseDescriptor) { in setGraphicsRootDescriptorTable() argument
566 SkASSERT(rootParameterIndex == in setGraphicsRootDescriptorTable()
568 rootParameterIndex == in setGraphicsRootDescriptorTable()
570 if (fCurrentGraphicsRootDescTable[rootParameterIndex].ptr != baseDescriptor.ptr) { in setGraphicsRootDescriptorTable()
571 fCommandList->SetGraphicsRootDescriptorTable(rootParameterIndex, baseDescriptor); in setGraphicsRootDescriptorTable()
572 fCurrentGraphicsRootDescTable[rootParameterIndex] = baseDescriptor; in setGraphicsRootDescriptorTable()
577 unsigned int rootParameterIndex, D3D12_GPU_DESCRIPTOR_HANDLE baseDescriptor) { in setComputeRootDescriptorTable() argument
578 SkASSERT(rootParameterIndex == in setComputeRootDescriptorTable()
580 rootParameterIndex == in setComputeRootDescriptorTable()
582 if (fCurrentComputeRootDescTable[rootParameterIndex].ptr != baseDescriptor.ptr) { in setComputeRootDescriptorTable()
583 fCommandList->SetComputeRootDescriptorTable(rootParameterIndex, baseDescriptor); in setComputeRootDescriptorTable()
584 fCurrentComputeRootDescTable[rootParameterIndex] = baseDescriptor; in setComputeRootDescriptorTable()