Merge pull request #1293 from baldurk/remove-en-dash

Replace en-dash with simple ASCII hyphen
This commit is contained in:
John Kessenich 2018-03-13 14:32:56 -06:00 committed by GitHub
commit 3e2a3c46d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -598,7 +598,7 @@ protected:
/******************************************************************************** /********************************************************************************
The following IO resolver maps types in HLSL register space, as follows: The following IO resolver maps types in HLSL register space, as follows:
t for shader resource views (SRV) t - for shader resource views (SRV)
TEXTURE1D TEXTURE1D
TEXTURE1DARRAY TEXTURE1DARRAY
TEXTURE2D TEXTURE2D
@ -613,7 +613,7 @@ t for shader resource views (SRV)
BUFFER BUFFER
TBUFFER TBUFFER
s for samplers s - for samplers
SAMPLER SAMPLER
SAMPLER1D SAMPLER1D
SAMPLER2D SAMPLER2D
@ -622,7 +622,7 @@ s for samplers
SAMPLERSTATE SAMPLERSTATE
SAMPLERCOMPARISONSTATE SAMPLERCOMPARISONSTATE
u for unordered access views (UAV) u - for unordered access views (UAV)
RWBYTEADDRESSBUFFER RWBYTEADDRESSBUFFER
RWSTRUCTUREDBUFFER RWSTRUCTUREDBUFFER
APPENDSTRUCTUREDBUFFER APPENDSTRUCTUREDBUFFER
@ -634,7 +634,7 @@ u for unordered access views (UAV)
RWTEXTURE2DARRAY RWTEXTURE2DARRAY
RWTEXTURE3D RWTEXTURE3D
b for constant buffer views (CBV) b - for constant buffer views (CBV)
CBUFFER CBUFFER
CONSTANTBUFFER CONSTANTBUFFER
********************************************************************************/ ********************************************************************************/