September 16th, 2013
0 reactions

Vector Calling Convention on channel 9

Ankit Asthana
Principal Program Manager

Recently we recorded a session for ‘Vector Calling Convention’ on Channel 9 , as part of the “Going Native” series. 

Vector calling convention is a new calling convention (specially for vector types) we introduced in the VS-2013. 

The video for this recording can be found here.

For more information about Vector Calling Convention please view our blog.

 

 

Category
C++

Author

Ankit Asthana
Principal Program Manager

0 comments

Discussion is closed.

'; block.insertAdjacentElement('beforebegin', codeheader); let button = codeheader.querySelector('.copy-button'); button.addEventListener("click", async () => { let blockToCopy = block; await copyCode(blockToCopy, button); }); } }); async function copyCode(blockToCopy, button) { let code = blockToCopy.querySelector("code"); let text = ''; if (code) { text = code.innerText; } else { text = blockToCopy.innerText; } try { await navigator.clipboard.writeText(text); } catch (err) { console.error('Failed to copy:', err); } button.innerText = "Copied"; setTimeout(() => { button.innerHTML = '' + svgCodeIcon + ' Copy'; }, 1400); }