HLSL errors and warnings

Header: comperrors.h

Error and warning codes that a shader can return.

SymbolicCodeDescription
ERR_COMMENTEOF1001A comment continues past the end of file.
ERR_HEXTRUNCATED1002A hex value was truncated to 32 bits.
ERR_OCTTRUNCATED1003An octal value was truncated to 32 bits.
ERR_DECTRUNCATED1004A decimal value was truncated to 32 bits.
ERR_STRINGEOL1005A string continues past the end of line.
ERR_STRINGEOF1006A string continues past the end of file.
ERR_CHAREOF1007A character continues past the end of file.
ERR_TOK_VERSION1008An error in the token version.
ERR_PP_SYNTAX1500An invalid preprocessor syntax.
ERR_UNEXPECTEDTOKENS1501There were unexpected tokens following the preprocessor directive.
ERR_UNEXPECTEDEOF1502The end of file was reached unexpectedly.
ERR_DIVZERO1503A division by zero in the preprocessor expression occurred.
ERR_INVALIDCOMMAND1504An invalid preprocessor command.
ERR_INCLUDEFROMFILE1505The include interface that is required to support #include from resource or memory doesn't work.
ERR_TOOMANYINCLUDES1506There are too many nested #includes.
ERR_FILE_OPEN1507The specified source file failed to open.
ERR_ELIF1508An unexpected #elif directive occurred.
ERR_ELSE1509An unexpected #else directive occurred.
ERR_ENDIF1510An unexpected #endif directive occurred.
ERR_DUPLICATEPARAMATER1511A duplicate parameter was supplied to the specified macro.
ERR_RESOURCE_OPEN1512A resource failed to open.
ERR_ELIF_ELSE1513An unexpected #elif directive followed a #else directive.
ERR_ELSE_ELSE1514An unexpected #else directive followed a #else directive.
ERR_UNEXPECTEDEOF_MACRO1515An unexpected end of file occurred in a macro expansion.
ERR_PARAMETERS_MACRO1516Not enough actual parameters were supplied to the specified macro.
ERR_PP_NOT_YET_IMPLEMENTED1517Functional defines in preprocessor expressions are not yet implemented.
ERR_INVALID_INT_EXPR1518An integer constant expression is invalid or unsupported.
ERR_MACRO_REDEFINITION1519The specified macro requires redefining.
ERR_LATE_FULL_PATH1520The #hlsl_full_path directive must be the first content in a source file.
ERR_INVALID_FULL_PATH1521The #hlsl_full_path directive was malformed.
ERR_PARSE_SYNTAX3000A syntax error was found while parsing a shader file.
ERR_REDEFINITION3003The specified function requires redefining.
ERR_UNDECLARED_IDENTIFIER3004An undeclared identifier was found while parsing a shader file.
ERR_INVALID_USE3005The invalid use of a type was found while parsing a shader file.
ERR_EXTERN3006The specified variable can't be declared extern.
ERR_STATIC3007The specified variable can't be declared static.
ERR_VOLATILE3008The specified variable can't be declared volatile.
ERR_INITIALIZERS3009The specified variable can't have initializers.
ERR_GROUPSHARED3010The specified variable can't be declared as group shared or the group-shared variable can't perform a specific task.
ERR_NONLITERAL_INITIALIZER3011The specified variable must be a literal expression.
ERR_MISSING_INITIALIZERS3012The specified variable is missing initializers.
ERR_ARGUMENTS3013The function doesn't take the specified number of parameters.
ERR_ARGUMENTS_BASETYPE3014An incorrect number of arguments was passed to the numeric-type constructor.
ERR_ARGUMENTS_INTRINSIC3015An incorrect number of arguments was passed to the intrinsic function.
ERR_UNSUPPORTED_CAST3017The conversion from one type to another type is unsupported.
ERR_SUBSCRIPT3018The subscript is invalid.
ERR_NUMERIC_EXPECTED3019A numeric value, like a float, was expected.
ERR_TYPE_MISMATCH3020A type mismatch occurred. For example, this error is returned if all template type components must have the same type, but they don't.
ERR_PARSE_ARRAY_EXPECTED3021An array was expected.
ERR_BASETYPE_EXPECTED3022A scalar, vector, or matrix was expected.
ERR_DETERMINANT3023A determinant error, such as a faulty observation, occurred.
ERR_VECTOR_EXPECTED3024A vector was expected.
ERR_LVALUE_EXPECTED3025An l-value, which specifies a const object, was expected.
ERR_MATRIX_MULTIPLICATION3026An error in matrix multiplication occurred.
ERR_PARSE_ARRAY_INDEX_OUT_OF_BOUNDS3030An index for an array is out of bounds.
ERR_PARSE_IMAGINARY_SQUARE_ROOT3031A imaginary square root error was found while parsing a shader file.
ERR_PARSE_INDEFINITE_LOG3032A indefinite log error was found while parsing a shader file.
ERR_PARSE_DIVISION_BY_ZERO3033A division-by-zero error was found while parsing a shader file.
ERR_CONST3035The specified variable can't be declared const.
ERR_REDEFINITION_FORMAL_PARAMETER3036An error occurred with the redefinition of the specified formal parameter.
ERR_UNSUPPORTED_TYPE_EXPR3037Constructors only defined for numeric base types.
ERR_NUMERIC3038The specified variable must be numeric.
ERR_PARSE_VERSION3039Can't be specific to the target.
ERR_ANNOTATIONS3040Can't have annotations.
ERR_SHADER_VERSION3041The compiler target is unsupported.
ERR_PARSE_NOT_YET_IMPLEMENTED3042A not-yet-implemented error was found while parsing a shader file.
ERR_SEMANTICS3043Can't have semantics.
ERR_MISSING_DEFAULT_PARAMETER3044A default value for the specified parameter is missing.
ERR_OUTPUT_INITIALIZER3045Output only and can't be initialized.
ERR_CONST_OUTPUT3046Output parameters can't be declared const.
ERR_UNIFORM3047The specified variable can't be declared uniform.
ERR_USAGE3048Duplicate usages are specified.
ERR_USAGE_VERSION3049Can't be specific to the usage.
ERR_MATRIX_EXPECTED3050A matrix was expected.
ERR_SCALAR_EXPECTED3051A scalar was expected.
ERR_VECTOR_SIZE3052The vector dimension must be between 1 and MAX_VECTOR_SIZE.
ERR_MATRIX_SIZE3053The matrix dimensions must be between 1 and MAX_VECTOR_SIZE.
ERR_SHARED3054The specified variable can't be declared as shared.
ERR_INLINE3055The specified variable can't be declared as inline.
ERR_LITERAL_VARIABLE3057The specified variable is a literal expression.
ERR_ARRAY_LITERAL3058Array dimensions must be literal scalar expressions.
ERR_ARRAY_SIZE3059Array dimension must be between 1 and 65536.
ERR_VECTOR_LITERAL3060The vector dimension must be a literal scalar expression.
ERR_MATRIX_LITERAL3061Matrix dimensions must be a literal scalar expressions.
ERR_UNIFORM_OUT3062The specified variable can't be declared 'uniform out'.
ERR_SAMPLER3063The specified variable can't be a sampler.
ERR_OBJECT_LITERALS3064Object literal expressions aren't allowed inside functions.
ERR_OBJECT_ASSIGNMENTS3065Object assignments aren't allowed inside functions.
ERR_SAMPLER_EXPECTED3066A sampler was expected.
ERR_AMBIGUOUS_FUNCTION_CALL3067The function call is ambiguous.
ERR_PROTOTYPE3068The return value of a function differs from the return value of the prototype of the function.
ERR_FUNCTION_HAS_BODY3069The function already has a body.
ERR_PARSE_INDEFINITE_ACOS3070A syntax error was found while parsing an indefinite arccosine.
ERR_PARSE_INDEFINITE_ASIN3071A syntax error was found while parsing an indefinite arcsine.
ERR_ARRAY_IMPLICIT3072Array dimensions for this type must be explicit.
ERR_ARRAY_IMPLICIT_ORDER3073Secondary array dimensions must be explicit.
ERR_ARRAY_IMPLICIT_VALUE3074The implicit array is missing a value.
ERR_ARRAY_IMPLICIT_SIZE3075The implicit array type does not match.
ERR_VOID_SEMANTIC3076A void function can't have a semantic attached to it.
ERR_USAGE_MATRIX3077Non-matrix types can't be declared as row_major or column_major.
ERR_REDEFINITION_LOOP_CONTROL3078The loop control variable that is used outside the for-loop scope conflicts with a previous declaration in the outer scope; the most recent definition was used.
ERR_RETURN_VOID3079Void functions can't return a value.
ERR_RETURN_VALUE3080The function must return a value.
ERR_COMMA_EXPRESSION3081A comma expression was used where an initializer list may have been intended.
ERR_BINARYTYPE_EXPECTED3082An int or unsigned int type is required for bitwise operators.
ERR_GEOMETRY_CONFLICT3083There are conflicting geometry types.
ERR_ATTRIBUTE3084Error with the attribute due to errors with its parameters.
ERR_UNSIGNED_TYPE3085The unsigned type can't be used with this variable type.
ERR_DEPRECATED_IN_STRICT_MODE3086The particular syntax (DirectX 9 syntax) or keyword (pixelshader) is deprecated in strict mode.
ERR_NO_METHODS3087The object doesn't have methods.
ERR_UNKNOWN_METHOD3088The object doesn't have the specified method.
ERR_TARGETUSAGE_INVALID3089The shader target or usage is invalid.
ERR_NO_OBJECTS_IN_STRUCTS3090No writable textures, samplers, or UAVs can be members of compound types with interface inheritance.
ERR_PACK_OFFSET_IN_INVALID_SCOPE3091Packoffset is only allowed in a constant buffer.
ERR_UNARY_NEGATE_OF_UNSIGNED3092Unary negate of unsigned value is still unsigned.
ERR_OUT_OF_MEMORY3093Ran out of memory will performing the operation.
ERR_NON_COMPOUND_BASE3094The base type is not a structure, class, or interface.
ERR_MULTI_CONCRETE_BASE3095Multiple concrete base types were specified.
ERR_NOT_TEMPLATE_TYPE3096The specified variable isn't a template type.
ERR_STATIC_METHOD_MEMBER_USE3097The specified static method can't refer to instance members.
ERR_NO_METHOD_PROTOTYPE3098The method isn't found in the class.
ERR_STATIC_METHOD_INSTANCE_CALL3099The specified static method can't be called on objects.
ERR_NO_STATIC_MEMBER_DECL3100The specified static member isn't found in the class or isn't a static variable.
ERR_STATIC_MEMBER_TYPE_MISMATCH3101The declaration type differs from the definition type.
ERR_INVALID_STATIC_MEMBER_SCOPE3102Static members can only be defined in global scopes.
ERR_MISSING_VARIABLE_DEFINITION3103The specified variable was declared but not defined.
ERR_NO_DATA_IN_INTERFACES3104Interfaces can't contain data.
ERR_NO_STATIC_METHODS_IN_INTERFACES3105Interface methods can't be static.
ERR_NO_INTERFACE_METHOD_BODIES3106Interface methods can't be declared outside of an interface.
ERR_NO_INTERFACE_INHERITANCE3107Interfaces can't inherit from other types.
ERR_CLASS_MISSING_INTERFACE_METHOD3108The class doesn't implement the specified method.
ERR_MISMATCHED_OVERRIDE_RETTYPE3109The return type doesn't match the overridden method.
ERR_NO_INTERFACES_AS_MEMBERS3110Interfaces can't be members.
ERR_RECURSIVE_CONTAINMENT3111Types can't contain members of their own type.
ERR_NO_SWITCH3112Can't use call or forcecase attributes on switch statements in the specified programs.
ERR_NO_OUT_DEFAULTS3113
ERR_DEFAULT_REDEFINED3114Default parameters can only be provided in the first prototype.
ERR_CONFLICTING_REGISTER_SEMANTICS3115The specified register is used more than once.
ERR_INVALID_API_CALL3116The API call is invalid.
ERR_INVALID_COMPILE_EXPR_FLAG3117The debug info flag can only be set globally.
ERR_INTERFACE_OUT3118Interfaces can only be inputs.
ERR_MULTI_DIM_POINTER_ARRAY3119Interface arrays can't be multi-dimensional.
ERR_INVALID_INDEX3120Invalid type for index was specified. Index must be a scalar or a vector with the correct number of dimensions.
ERR_INDEXABLE_TYPE_EXPECTED3121An array, matrix, vector, or indexable object type was expected in the index expression.
ERR_NON_SCALAR_VECTOR_ELEMENT3122The vector element type must be a scalar type.
ERR_NON_SCALAR_MATRIX_ELEMENT3123The matrix element type must be a scalar type.
ERR_OBJECT_HAS_OBJECT_ELEMENT3124The object element type can't be an object type.
ERR_INVALID_DOT_MIPS_USAGE3125The .mips type can only be used in a two-element indexing expression, such as, .mips[mip][element].
ERR_METHOD_IMPL_PROTO_MISMATCH3126The specified method didn't match any prototype in the class.
ERR_METHOD_IMPL_BODY_MISSING3127The specified method can't be re-declared.
ERR_NON_SIMPLE_STREAM3128Stream parameters can only be single-element types.
ERR_WARNING_AS_ERROR3129A warning was treated as an error.
ERR_FX_SINGLE3130The specified variable can't be declared 'single'.
ERR_NO_STATIC_INTERFACE_INIT3131Static interfaces can't have initializers.
ERR_NO_INTERFACES_IN_BUFFERS3132Interfaces can't be declared in buffers.
WAR_TYPE_MISMATCH3200Type mismatches aren't recommended.
WAR_NOFRAGMENTS3201Fragments aren't recommended.
WAR_INVALID_SEMANTIC3202The semantic doesn't apply and is ignored.
WAR_SIGNED_UNSIGNED_COMPARE3203A signed versus unsigned mismatch occurred between destination and value and unsigned is assumed.
WAR_INT_TOO_LARGE3204Unsigned integer literal is too large so is truncated.
WAR_PRECISION_LOSS3205In the conversion from larger type to smaller, a loss of data might occur.
WAR_ELT_TRUNCATION3206The implicit truncation of a vector type occurred.
WAR_CONST_INITIALIZER3207Initializer was used on a global 'const' variable. This requires setting an external constant. If a literal is wanted, use 'static const' instead.
WAR_FAILED_COMPILING_10L9VS3208Failed compiling the 10_level_9 (9_x feature levels) vertex shader version of the library function.
WAR_FAILED_COMPILING_10L9PS3209Failed compiling the 10_level_9 (9_x feature levels) pixel shader version of the library function.
ERR_COMP_NOT_YET_IMPLEMENTED3500The particular expressions are not yet implemented.
ERR_ENTRYPOINT_NOT_FOUND3501The entry-point function is not found.
ERR_MISSING_INPUT_SEMANTICS3502The specified input parameter is missing semantics.
ERR_MISSING_OUTPUT_SEMANTICS3503The specified output parameter or function return value is missing semantics.
ERR_COMP_ARRAY_INDEX_OUT_OF_BOUNDS3504The index of the array is out of bounds.
ERR_OLD_VERSION3505The version being used is no longer supported; instead use a current version.
ERR_UNRECOGNIZED_VERSION3506The compiler target isn't recognized.
ERR_RETURN3507The type can't return a value.
ERR_OUT_UNINITIALIZED3508The output parameter or return value was never assigned a value.
ERR_DEPENDENT_TEX1D3509Texture sample is considered dependent since texcoord wasn't declared as at least a float.
ERR_FUNCTION_MISSING_BODY3510The function is missing an implementation.
ERR_CANT_UNROLL3511The loop is unable to unroll, the loop doesn't appear to terminate in a timely manner (in the specified number of iterations), or the unrolled loop is too large. Use the [unroll(n)] attribute to force an exact higher number.
ERR_ARRAY_INDEX_MUST_BE_LITERAL3512The index of the sampler array must be a literal expression.
ERR_COMP_ARRAY_EXPECTED3513An array or a particular array dimension was expected.
ERR_GEOMETRY_INVALID3514The specified input semantic is invalid for geometry shader primitives, it must be its own parameter.
ERR_TARGET_INVALID3515The target is invalid. For example, user-defined buffers can't be target specific, and the register specification expected a particular binding.
ERR_TEXCUBE_OFFSET_INVALID3516Texcube instructions can't have integer offsets.
ERR_UNDEFINED_VARIABLE3517The variable is undefined.
ERR_BREAK_OUTSIDE_LOOP3518A break must be inside a loop.
ERR_CONTINUE_OUTSIDE_LOOP3519A continue must be inside a loop.
ERR_TEXPROJ_INVALID_TEXCOORD3520Texture projection can't have texcoord instructions.
ERR_TEXTURE_TYPE3521The return type of the texture is too large. It can't exceed four components.
ERR_TEXTURE_OBJECTS_UNSUPPORTED3522Texture objects or streams aren't supported on legacy targets.
ERR_COMPAT_MAKETEXTURE3523DirectX 9-style intrinsic functions are disabled when not running in DirectX 9 compatibility mode.
ERR_DUPLICATE_ATTRIBUTE3524Specific attributes can't be used together, like loop and unroll, or a duplicate attribute was supplied.
ERR_NOT_SIMPLE_LOOP3525The loop can't be mapped to a shader target because the target doesn't support breaks.
ERR_GRADIENT_WITH_BREAK3526Gradient instructions can't be used in loops with breaks.
ERR_TEXTURE_OFFSET3527Texture access requires literal offset and multisample index.
ERR_CANT_BRANCH3528Flow control (branching) can't be used on this profile.
ERR_MUST_BRANCH3529Flattening with flow control in this specific situation can't be done.
ERR_BIND_INVALID3530Invalid binding operation was performed. For example, buffers can only be bound to one slot or one constant offset; invalid register specification because a particular binding was expected but didn't occur; can't mix packoffset elements with nonpackoffset elements in a cbuffer.
ERR_NEED_UNROLL_FORCED_LOOP3531Loops that are marked with the loop attribute can't be unrolled.
ERR_DUPLICATE_CASE3532A duplicate default or case statement occurred in a switch statement.
ERR_MUST_HAVE_BREAK3533Non-empty case statements must have a break or return.
ERR_LOW_PRECISION3534Partial precision isn't supported for the specified target. Min-precision types might offer similar functionality.
ERR_UNSUPPORTED_OPERATION3535An unsupported operation was performed. For example, bitwise operations aren't supported on legacy targets; CheckAccessFullyMapped requires shader model 5 or higher; Texture Xxx methods for tiled resources require shader model 5 or higher.
ERR_INCOMPATIBLE_DUP_SEMANTICS3536SV_ClipDistance semantics can't be used when using the clipplanes attribute, or duplicated input semantics can't change type, size, or layout.
ERR_NO_FALLTHROUGH3537Fall-through cases in switch statements aren't supported. case / default statements that fall through to the next case / default without a break can't have any code in them.
ERR_NON_LITERAL_SAMPLER3538Sampler parameter must come from a literal expression.
ERR_OLDVERSION3539A particular shader version, such as, ps_1_x, is no longer supported; use /Gec in the fxc.exe HLSL code compiler to automatically upgrade to the next shader version, such as, ps_2_0; alternately, fxc's /LD option allows use of a previous compiler DLL.
ERR_NO_GLOBAL_PACK_OFFSETS3540Global packoffset variables aren't supported.
ERR_INVALID_PACK_OFFSET_NAME3541Invalid packoffset location was specified.
ERR_PACK_OFFSET_CANT_HAVE_TARGET3542A packoffset variable can't have a target qualifier.
ERR_REINTERPRET_UNSUPPORTED3543The operation can't reinterpret the supplied datatype.
ERR_NO_INTERFACE_SUPPORT3544Abstract interfaces aren't supported on the specified target; interface references must resolve to specific instances.
ERR_NO_IFACE_METHOD_IMPLS3545No classes implement the specified method.
ERR_TBUFFER_UNSUPPORTED3546Reading from texture buffers is unsupported on the specified target.
ERR_NO_GLOBAL_COMPOUND_WRITES3547Global structs and classes can't be changed.
ERR_NO_NEGATIVE_EMULATED_UINTS3548The specified uints can only be used with known-positive values, use int if possible.
ERR_INTERLOCKED_TARGET3549Interlocked targets must be groupshared or UAV elements. Or, the specified target doesn't support interlocked operations, for example, IncrementCounter / DecrementCounter are only valid on RWStructuredBuffer objects.
WAR_ARRAY_INDEX_MUST_BE_LITERAL3550The index of the sampler array must be a literal expression, so the loop is forced to unroll.
WAR_INFINITE_LOOP3551An infinite loop was detected so the loop writes no values.
WAR_NOT_SIMPLE_LOOP3552The loop can't be mapped to a shader target because the target doesn't support breaks.
WAR_GRADIENT_WITH_BREAK3553Can't use gradient instructions in loops with break.
WAR_UNKNOWN_ATTRIBUTE3554The attribute is unknown or invalid for the specified statement.
WAR_INCOMPATIBLE_FLAGS3555Flags aren't compatible with the operation.
WAR_INT_DIVIDE_SLOW3556Integer divides might be much slower, try using uints if possible.
WAR_TOO_SIMPLE_LOOP3557The loop only executes for a limited number of iterations or doesn't seem to do anything so consider removing it or forcing it to unroll.
WAR_ENDIF_UNINITIALIZED3558The #endif directive is uninitialized.
WAR_LOOP_ASYMMETRIC_RETURN3559The loop returns asymmetrically.
WAR_MUST_BRANCH3560If statements that contain out of bounds array accesses can't be flattened.
WAR_OLDVERSION3561A particular shader version, such as, ps_1_x, is no longer supported; use the next shader version, such as, ps_2_0.
WAR_OUTOFBOUNDS_LOOPSIM3562The loop simulation goes out of bounds.
WAR_OUTOFBOUNDS_LOOPUNROLL3563The loop unrolls out of bounds.
WAR_PRAGMA_RULEDISABLE3564For better compilation results, consider re-enabling the specified rule.
WAR_DID_NOT_SIMULATE3565Loop simulation finished early, use /O1 or higher for potentially better codegen.
WAR_NO_EARLY_BREAK3566Loop won't exit early, try to make sure the loop condition is as tight as possible.
WAR_IGNORING_REGISTER_SEMANTIC3567The register semantic is ignored.
WAR_UNKNOWN_PRAGMA3568The unknown pragma directive is ignored.
WAR_LOOP_TOO_LONG3569The loop executes for more than the maximum number of iterations for the specified shader target, which forces the loop to unroll.
WAR_GRADIENT_MUST_UNROLL3570A gradient instruction is used in a loop with varying iteration, which forces the loop to unroll.
WAR_POW_NOT_KNOWN_TO_BE_POSITIVE3571The pow (f, e) intrinsic function won't work for negative f, use abs (f) or conditionally handle negative values if you expect them.
WAR_VARYING_INTERFACE3572Interface references must resolve to non-varying objects.
WAR_TESSFACTORSCALE_OUTOFRANGE3573Tessellation factor scale is clamped to the range [0, 1].
WAR_SYNC_IN_VARYING_FLOW3574Thread synchronization operations can't be used in varying flow control.
WAR_BREAK_FROM_UAV3575Automatic unrolling has been disabled for the loop, consider using the [unroll] attribute or manual unrolling. Or, loop termination conditions in varying flow control so can't depend on data read from a UAV.
WAR_OVERRIDDEN_SEMANTIC3576Patch semantics must live in the enclosed type so the outer semantic is ignored. Or, semantics in type are overridden by variable/function or enclosing type.
WAR_KNOWN_NON_SPECIAL3577The value can't be infinity, A call to isfinite might not be necessary. /Gis might force isfinite to be performed. Or, The value can't be NaN, A call to isnan might not be necessary. /Gis might force isnan to be performed.
WAR_TLOUT_UNINITIALIZED3578The output value isn't completely initialized.
WAR_GROUPSHARED_UNSUPPORTED3579The specified variable doesn't support groupshared so groupshared is ignored.
WAR_CONDITIONAL_SIDE_EFFECT3580Both sides of the &&, ||, or ?: operator are always evaluated so the side effect on the specified side won't be conditional.
WAR_NO_UNSIGNED_ABS3581The abs operation on unsigned values is not meaningful so it's ignored.
WAR_TEXTURE_OFFSET3582Texture access must have literal offset and multisample index.
WAR_POTENTIAL_RACE_CONDITION_UAV3583A race condition writing to a shared resource was detected, note that threads are writing the same value, but performance might be diminished due to contention.
WAR_POTENTIAL_RACE_CONDITION_GSM3584A race condition writing to shared memory was detected, note that threads are writing the same value, but performance might be diminished due to contention.
WAR_UNRELIABLE_SOURCE_MARK3585Source_mark is most useful in /Od builds. Without /Od source_mark, can be moved around in the final shader by optimizations.
WAR_NO_INTERFACE_SUPPORT3586Abstract interfaces aren't supported on the specified target so interface references must resolve to specific instances.
WAR_MIN10_RCP3587The target emulates A / B with A * reciprocal(B). If the reciprocal of B is not representable in your min-precision type, the result might not be mathematically correct.
WAR_NO_CLIPPLANES_IN_LIBRARY3588The clipplanes attribute is ignored in library functions.
ERR_PRAGMA_DEF_OBSOLETE3589The '#pragma def' directive is no longer supported on DirectX 10+ and 10_level_9 (9_x feature levels) targets. Use compatibility mode to allow compilation.
ERR_NO_32_BIT_HALF3650Global variables can't use the 'half' type in the specified target. To treat this variable as a float, use the backwards compatibility flag.
ERR_NO_32_BIT_DOUBLE3651The specified target doesn't support double data type values.
ERR_NO_SMALL_INT3652The specified target doesn't support 8-bit or 16-bit integers.
ERR_NO_64_BIT_INT3653The specified target doesn't support 64-bit integers.
ERR_NO_UNSIGNED_ABS3654The abs operation on unsigned values isn't supported.
ERR_THREAD_GROUP_SIZE_INVALID3655The thread group size is invalid.
ERR_THREAD_GROUP_SIZE_MISSING3656The size of the thread group is missing.
ERR_HSATTRIBUTE_INVALID3657Expected the specified parameter to be a certain value but got the specified value. Or, line or triangle output topologies are only available with isoline domains. Or, the maximum tesselation factor must be in the range [1,64].
ERR_HS_PATCH_INVALID3658Only one InputPatch or OutputPatch parameter is allowed. Or, InputPatch inputs can only be used in hull and geometry (5_0+) shaders. Or, OutputPatch inputs can only be used in the domain shaders and a hull shader's patch constant function.
ERR_HS_TYPE_MISMATCH3659The patch constant function must use the same input control point type that is declared in the control point phase. Or, the patch constant function must use the same output control point type that is returned from the control point phase. Or, the patch constant function's output patch input should have a certain number of elements, but has the specified amount.
ERR_INTERLOCKED_UNSUPPORTED3660The specified target doesn't support interlocked operations.
ERR_GROUPSHARED_UNSUPPORTED3661The specified variable doesn't support groupshared .
ERR_INDETERMINATE_DERIVATIVE3662The gradient operation uses a value that might not be defined for all pixels (in the specified target, UAV loads can't participate in gradient operations).
ERR_SYNC_IN_VARYING_FLOW3663Thread synchronization operations can't be used in varying flow control.
ERR_SYNC_UNSUPPORTED3664The specified target doesn't support synchronization operations.
ERR_NO_APPEND_CONSUME3665The specified target doesn't support Append/Consume buffers.
ERR_NO_TYPED_UAVS3666The specified target doesn't support typed UAVs.
ERR_NO_UAVS3667The specified target doesn't support UAVs.
ERR_INDEX_IS_NOT_GROUP_INDEX3668Stores to group shared memory for specified targets must be indexed by an SV_GroupIndex only.
ERR_NON_LITERAL_RESOURCE3669Resources being indexed can't come from conditional expressions, they must come from literal expressions.
ERR_NON_LITERAL_STREAM3670The stream parameter must come from a literal expression.
ERR_BREAK_FROM_UAV3671Loop termination conditions in varying flow control so can't depend on data read from a UAV.
ERR_NO_PULL_MODEL3672The specified target doesn't support pull-model attribute evaluation.
ERR_CANT_PULL_POSITION3673The specified target doesn't support pull-model evaluation of position.
ERR_PULL_MUST_BE_INPUT3674Attribute evaluation can only be done on values that are taken directly from inputs.
ERR_LOOP_CONDITION_OUT_OF_BOUNDS3675Can't unroll loop with an out-of-bounds array reference in the condition.
ERR_TYPED_UAV_LOAD_MULTI_COMP3676Typed UAV loads are only supported for single-component 32-bit element types.
ERR_MULTIPLE_DEPTH_OUT3677The specified target only allows one depth output.
ERR_NO_ORDERED_ACCESS_IN_INTERFACE3678Interface-reachable members containing UAVs or group shared variables aren't implemented yet.
ERR_COMP_GLC_INVALID3679The storage class globallycoherent can only be used with Unordered Access View (UAV) buffers and can't be used with append/consume buffers.
ERR_HS_UNKNOWN_OUTPUT_TYPE3680When you define a pass-through control-point shader, you must declare an InputPatch object, and the number of output control points must be zero or must match the input patch size.
ERR_ATOMIC_REQUIRES_INT3681The specified target only supports interlocked operations on scalar int or uint data.
ERR_ATTRIBUTE_PARAM_SIDE_EFFECT3682Expressions with side effects are invalid as attribute parameters
ERR_INVALID_RESOURCE_CONTAINER3683Groupshared variables can't contain resources such as textures, samplers or UAVs. Or, resources such as textures, samplers or UAVs can't contain other resources.
ERR_UNSUPPORTED_DOUBLE_OPERATION3684The specified target doesn't support double-precision floating-point. Or, the operation can't be used directly on resources. Or, the operation can't be used with doubles, cast to float first. Or, the operation isn't supported on the given type.
ERR_INVALID_TESS_FACTOR_SEMANTIC3685The tessfactor semantic is out of order. Or, conflicting quad/tri/isoline tessfactor semantic. Or, tessfactor semantics must be in the same component.
ERR_UNSUPPORTED_THIS_OBJECT3686The specified object isn't supported.
ERR_INVALID_SHADER_IO3687Double types can't be used as shader inputs or outputs. If you need to pass a double between shader stages, you must pass it as two uints and use asuint and asdouble to convert between forms.
ERR_INDEXED_DERIV3688Derivatives of indexed variables aren't implemented yet.
ERR_ORDERED_ACCESS_CAST3689The left-hand side of an assignment can't be cast to an indexable object so consider using asuint , asfloat , or asdouble on the right-hand side.
ERR_RESOURCE_UNINITIALIZED3690The resource being indexed is uninitialized.
ERR_INVALID_STATIC_VAR_INIT3691Invalid variable reference in static variable initializer. Locals can't be used to initialize static variables.
ERR_NO_ABORT3692The specified target doesn't support aborts.
ERR_NO_MESSAGES3693The specified target doesn't support messages.
ERR_GUARANTEED_RACE_CONDITION_UAV3694A race condition writing to a shared resource was detected so consider making this operation write conditional.
ERR_GUARANTEED_RACE_CONDITION_GSM3695A race condition writing to shared memory was detected so consider making this operation write conditional.
ERR_INFINITE_LOOP3696An infinite loop was detected so the loop never exits.
ERR_TEMPLATE_VAR_CONFLICT3697The specified variable matches a variable in the template shader but the type layout doesn't match.
ERR_RESOURCE_BIND_CONFLICT3698The specified resource had binding conflicts with the template shader.
ERR_COMPLEX_TEMPLATE_RESOURCE3699Place-holder template resources can only be simple resources so structs and arrays aren't supported.
ERR_RESOURCE_NOT_IN_TEMPLATE3700For the specified resource, binding isn't present in the template shader.
ERR_RESINDEX_UNSUPPORTED3701The specified target doesn't support indexing resources.
ERR_FMA_ONLY_DOUBLE3702The fma intrinsic function can only be used with double arguments.
ERR_NO_MIN_PRECISION3703The specified target doesn't support minimum-precision data.
ERR_NO_F32_F163704The specified target doesn't support 16-bit float conversions.
ERR_NOT_ABLE_TO_FLATTEN3705If statements that contain side effects can't be flattened.
ERR_INVALID_MININT3706Signed integer division isn't supported on minimum-precision types. Cast to int to use 32-bit division.
ERR_INVALID_MIN8FLOAT3707A minimum 8-bit floating point value is invalid or unsupported.
ERR_CONTINUE_INSIDE_SWITCH3708A continue statement can't be used in a switch statement.
ERR_DEBUG_NOT_SUPPORTED_FOR_MODERN3709Debug isn't supported.
ERR_UNSUPPORTED_PARAM_TYPE3710The specified function parameters are unsupported.
ERR_DUPLICATE_FUNC_PARAM_SEMANTICS3711Library function parameters and return values can't have duplicate semantic.
ERR_LIBRARY_FUNC_UNSUPPORTED3712Library functions are supported only for pixel shaders and vertex shaders.
ERR_ENTRYPOINT_MUST_BE_EMPTY3713An entry point can't be specified for a library. Mark library entry points with the export keyword.
ERR_NO_STATIC_IN_LIBRARY3714The specified variable is declared as static, which isn't supported for libraries yet.
ERR_NO_TBUFFER_IN_LIBRARY3715The specified variable is declared as tbuffer, which is not supported for libraries yet.
ERR_NO_INTERFACES_IN_LIBRARY3716Classes and interfaces aren't supported in libraries.
ERR_NO_DOUBLE_IN_LIBRARY3717Double data types can't be used as library function inputs or outputs. If you need to pass a double to a library function, you must pass it as two uints and use asuint and asdouble to convert between forms.
ERR_NO_OVERLOADING_FOR_LIB_FUNC3718Library entry points can't be overloaded.
ERR_RES_MAY_ALIAS_ONLY_IN_CS_53719The 'resources_may_alias' option is only valid for cs_5_0+ targets.
ERR_READ_BEFORE_WRITE4000The specified variable is used without having been completely initialized.
ERR_MID_DIVISION_BY_ZERO4001A division by zero in the mid-level preprocessor expression occurred.
ERR_MID_INDEFINITE_LOG4002An indefinite logarithm occurred.
ERR_MID_IMAGINARY_SQUARE_ROOT4003An imaginary square root occurred.
ERR_TOO_COMPLEX4004The program is too complex because there are more active values than registers.
ERR_INDEFINITE_ASIN4005An indefinite arcsine occurred.
ERR_INDEFINITE_ACOS4006An indefinite arccosine occurred.
ERR_ARRAY_INDEX_OUT_OF_BOUNDS4007The array index is out of bounds.
WARN_FLOAT_DIVISION_BY_ZERO4008A floating point division by zero occurred.
ERR_IDIV_DIVISION_BY_ZERO4009An integer division by zero occurred.
ERR_UDIV_DIVISION_BY_ZERO4010An unsigned integer division by zero occurred.
ERR_FTOI_OUTOFRANGE4011The floating-point value out of integer range for a conversion.
ERR_FTOU_OUTOFRANGE4012The floating-point value out of unsigned integer range for a conversion.
ERR_INDEFINITE_DSXY4013An indefinite derivative calculation occurred.
ERR_GRADIENT_FLOW4014Gradient operations can't occur inside loops with divergent flow control.
ERR_MID_SEMANTIC_TOO_LONG4015The semantic length is too long.
ERR_INVALID_SEMANTIC4016The semantic is invalid. For example, the SV_InstanceID semantic can't be used with 10_level_9 (9_x feature levels) targets, or zero-character semantics aren't supported.
ERR_MID_INVALID_REGISTER_SEMANTIC4017The same variable can't be bound to multiple constants in the same constant bank.
ERR_TOO_MANY_PHASES4018The shader uses texture addressing operations in a dependency chain that is too complex for the specific target shader model to handle.
ERR_CONSTANT_REG_COLLISION4019Multiple variables were found with the same user-specified location.
ERR_TBUFFER_REG_COLLISION4020Multiple variables were found with the same user-specified location.
ERR_DERIV_READ_BEFORE_WRITE4021Derivative is being used before it was defined so consider moving the derivative assignment earlier in the program.
ERR_DERIV_INVALID_PREDICATE4022Derivative isn't defined in a different branch of flow-control so consider moving the derivative assignment before any flow control statements.
ERR_DERIV_REDEFINITION4023A redefinition of a derivative occurred, and derivatives can only be assigned once.
ERR_DERIV_KNOWN_VALUE4024Derivatives of known values are unimplemented.
ERR_DERIV_UNKNOWN4025Unable to calculate the derivative of the specified value.
ERR_RACE_CONDITION_INDUCED_INV_SYNC4026A thread sync operation must be in non-varying flow control. Because of a potential race condition, this sync is invalid so consider adding a sync after reading any values that control shader execution at this point.
ERR_ALIAS_ARRAY_INDEX_OUT_OF_BOUNDS4027The array index is out of bounds.
ERR_MINPRECISION_PRECISE4028The specified variable has a minimum precision type and can't be marked precise.
ERR_LOOP_NEVER_BREAKS4029An infinite loop was detected so the loop never exits.
WARN_FTOI_OUTOFRANGE4114The literal floating-point value is out of integer range for the conversion.
WARN_FTOU_OUTOFRANGE4115The literal floating-point value is out of unsigned integer range for the conversion.
WARN_IDIV_DIVISION_BY_ZERO4116A possible integer divide by zero occurred.
WARN_UDIV_DIVISION_BY_ZERO4117A possible unsigned integer divide by zero occurred.
WARN_IMAGINARY_SQUARE_ROOT4118An imaginary square root operation occurred.
WARN_INDEFINITE_LOG4119An indefinite logarithm operation occurred.
WARN_REPLACE_NOT_CONVERGE4120Optimizations aren't converging.
WARN_HOISTING_GRADIENT4121Gradient-based operations must be moved out of flow control to prevent divergence. Performance might improve by using a non-gradient operation.
WARN_FLOAT_PRECISION_LOSS4122The sum of two floating point values can't be represented accurately in double precision.
WARN_FLOAT_CLAMP4123Floating-point operations flush denorm float literals to zero so the specified floating point value is losing precision (this warning will only be shown once per compile).
ERR_GEN_NOT_YET_IMPLEMENTED4500A feature like clipping from a swizzled vector is not yet implemented.
ERR_DUPLICATE_INPUT_SEMANTIC4501An inconsistent semantic definition occurred.
ERR_INVALID_INPUT_SEMANTIC4502The specified input semantic is invalid.
ERR_INVALID_OUTPUT_SEMANTIC4503The specified output semantic is invalid.
ERR_DUPLICATE_OUTPUT_SEMANTIC4504Overlapping output semantics occurred.
ERR_MAX_TEMP_EXCEEDED4505The maximum temp register index was exceeded.
ERR_MAX_INPUT_EXCEEDED4506The maximum number of inputs was exceeded.
ERR_MAX_CONST_EXCEEDED4507The maximum constant register index was exceeded. Try to reduce the number of constants that are referenced.
ERR_MAX_ADDR_EXCEEDED4508The maximum address register index was exceeded.
ERR_GEN_INVALID_REGISTER_SEMANTIC4509An invalid register semantic was used, or a variable must be bound to multiple register banks.
ERR_MAX_SAMPLER_EXCEEDED4510The maximum number of samplers was exceeded.
ERR_REL_ADDRESS_NOT_SUP4511The target doesn't support relative addressing.
ERR_NO_W_ACCESS4512The texture coordinate w-component can't be accessed.
ERR_NO_DEP_FROM_COL4513Dependent texture read operations that in any way are based on color inputs can't be performed.
ERR_PROGRAM_TOO_BIG4514The program is too big.
ERR_CANNOT_BIND_SAMPLER4515The sampler can't be bound to the user specified stage or sampler array.
ERR_CANNOT_READ_SAME_TEX4516A texcoord that was used as input in a sampler can't be read from.
ERR_CONFLICT_SAMP_BIND4517User defined sampler or sampler array bindings are conflicting. If two samplers have the same user binding, they can't both be used in the same shader.
ERR_MULTI_READ_SAMP_BIND4518Texture lookup can't be performed twice from a user bound or similar array access sampler.
ERR_TOO_MANY_TEXREADS4519Too many texture loads and reads occurred from texcoords.
ERR_NO_TEXCRD_SHARE4520texcoord can be read from and used for texlookup only in ps_1_4 and higher.
ERR_OUT_OF_TEMP4521The program is too complex and is out of temporary registers.
ERR_NO_REP_SWIZZLE4522Replicate swizzles are only supported in ps_1_4.
ERR_NO_DEP_MATCH4523This dependent texture read can't be mapped to ps_1_x, or the shader can't compile to a ps_1_x shader because this model can't match all the dependent texture reads this shader requires.
ERR_TEXM_NO_SHARE4524texm can't be matched because computed texcoord is used in shader.
ERR_TEXM_NOT_COR_STAGE4525texm* can't be matched because source inputs aren't in the appropriate texture coordinates. For more info, see the ps_1_x assembly reference .
ERR_TEXM_NO_SOURCE_MOD4526texm* can't be matched to because texm* can't have source modifiers on input texcoord.
ERR_TEXM_BX2_ONLY4527texm* can't be matched to because texm* can only have bx2 modifier on input texload.
ERR_DEPTH_SCALAR4528DEPTH must be a scalar.
ERR_COLOR_4COMP4529The semantic (SV_Target or COLOR) value must be a four-component vector.
ERR_WRITE_TO_COLOR04530The pixel shader must minimally write all four components of the semantic (SV_Target0 or COLOR0) value.
ERR_DP4_NOT_SUP4531DP4 isn't supported.
ERR_NO_MATCH4532The expression can't be mapped to the shader instruction set.
ERR_NO_SWIZZLE_MATCH4533Swizzle can't be mapped to ps_1_x.
ERR_NO_DOUBLE_DEP4534Double dependent texture reads can't be performed in ps_1_x.
ERR_NO_TEX_SOURCE4535The texreg2ar or texreg2gb instruction can't be matched to because you can't have input modifiers.
ERR_TEXRGB_NOT_SUPPORTED4536The expression can only be mapped to texreg2rgb, but this instruction isn't supported on 1_x.
ERR_CANT_EMMULLATE_WRITE4537Write masks can't be emulated for the ps_1_x shader model.
ERR_COLOR_CONT4538SV_Target outputs must be contiguous from SV_Target0 to SV_TargetN, or COLOR outputs must be contiguous from COLOR0 to COLORn.
ERR_SAMPLER_MISMATCH4539A sampler mismatch occurred because the sampler was used inconsistently.
ERR_SEMANTIC_SCALER4540PSIZE or FOG must be a scalar.
ERR_WRITE_ALL_POS4541The vertex shader must minimally write all four components of SV_Position or POSITION.
ERR_TEXCOORD_CONT4542Texcoord outputs must be contiguous from texcoord0 to texcoordn.
ERR_NO_MULTI_SEM4543Multi-register semantics aren't supported in fragments.
ERR_NO_4COMP_CLIP4544The clip must be from a 3 vector in ps_1_x.
ERR_TEXTURE_NOT_SUPPORTED4545An unsupported texture type for the specified target was encountered.
ERR_MAX_SAMP_EXCEEDED4546The maximum sampler register index was exceeded.
ERR_DEBUG_SIZE4547The debug info exceeds the maximum comment size so no debug info was emitted.
ERR_CONSTANTTABLE_SIZE4548The constant table info exceeds the maximum comment size.
ERR_MAX_PRED_EXCEEDED4549The maximum predicate register index was exceeded.
ERR_MAX_BOOL_EXCEEDED4550Try reducing the number of constant branches, take bools out of structs/arrays, or move them to the start of the struct.
ERR_MAX_LOOP_EXCEEDED4551Try reducing the number of loops, take loop counters out of structs/arrays, or move them to the start of the struct.
ERR_NOT_SIMPLE_FOR4552The general loop can't be mapped to this instruction set.
ERR_ADDRESS_TOO_DEEP4553Relative address references are too deep.
ERR_CND_SCALAR4554Vector conditionals can't be emulated in ps_1_x shader model.
ERR_INVALID_TYPE4555An invalid type used for the specified semantics.
ERR_MAX_TEXTURE_EXCEEDED4565The maximum number of texture slots is exceeded for a library.
ERR_REQUIRE_INT_OFFSET4566Offset texture instructions must take an offset, which can resolve to integer literal in the range -8 to 7.
ERR_MAX_CBUFFER_EXCEEDED4567The maximum number of constant buffer slots is exceeded for a library.
ERR_INCORRECT_USAGE4568The usage is unsupported on the target. For example, the sample interpolation, nointerpolation, noperspective, or integer inputs usages might be unsupported.
ERR_POSITION_INCORRECTTYPE4569An incorrect type was specified for the POSITION value.
ERR_MULTIPLE_STREAMS4570The target can only emit to a specific amount of streams.
ERR_MAX_OUTPUT_EXCEEDED4571The output limit was exceeded.
ERR_NO_STREAMS_USED4572The geometry shader didn't emit anything.
ERR_GEN_SEMANTIC_TOO_LONG4573The semantic length is too long and is limited to the specified number of characters.
ERR_DUPLICATE_SYSVAL_SEMANTIC4574A duplicate system value semantic definition was encountered.
ERR_READING_UNINITIALIZED4575An uninitialized value was read.
ERR_SIGNATURE_VALIDATION4576An error occurred during signature validation.
ERR_INCOMPLETE_POSITION4577Not all elements of SV_Position were written.
ERR_DUPLICATE_CBUFFER_BANK4578The specified cbuffer register was used more than once.
ERR_INVALID_FP_LITERAL4579An invalid floating point literal occurred.
ERR_UNWRITTEN_SI_VALUE4580The specified output contains a system-interpreted value that must be written in every execution path of the shader. Unconditional initialization might help.
ERR_AUTOSAMPLER_ARRAY_UNIMPL4581Using sampler arrays with texture objects on 10_level_9 (9_x feature level) targets isn't implemented yet.
ERR_INVALID_TEXTURE_FORMAT4582Sampling from non-floating point texture formats can't be done.
ERR_INVALID_10L9_SEMANTIC4583The specified semantic isn't supported on the 10_level_9 (9_x feature level) target.
ERR_MAX_IFACE_EXCEEDED4584The maximum number of interface pointers was exceeded.
ERR_MAX_UAV_EXCEEDED4585The maximum number of UAV slots was exceeded for a library.
ERR_MAX_GROUP_SHARED_MEMORY_EXCEEDED4586The total amount, in bytes, of group shared memory exceeded the target's limit.
ERR_TOO_MANY_GROUP_SHARED_DATA4587Shaders compiled for the specified target can only have a single group shared data item.
ERR_INCORRECT_NUM_GROUP_SHARED_ELEMENTS4588Group shared data for the specified target must have a count of elements that is equal to the number of threads in the thread group.
ERR_CONTROL_POINT_COUNT_EXCEEDED4589The maximum control point count for the target was exceeded
ERR_GROUP_SHARED_DATA_ELEMENT_TOO_LARGE4590Group shared data for the specified target is too large and must have an element size of at most the specified amount of bytes when compiling for the specified number of threads.
ERR_GROUP_SHARED_DATA_NOT_AN_ARRAY4591Group shared data for the specified target must be an array of elements.
ERR_MULTI_SO_NOT_POINT4592When multiple geometry shader output streams are used they must be point lists.
ERR_INVALID_SNAP_OFFSET4593The target's snap offset must be in the range -8 to 7.
ERR_CLIPPLANE_TOO_COMPLICATED4594Clip planes can't be addressed in the specified target; or, clip planes must be non-literal constants with identity swizzles in the specified target.
ERR_ONLY_ONE_ALLOC_CONSUME4595RWStructuredBuffer objects can increment or decrement their counters, but not both.
ERR_TYPED_UAV_WRITE_MASK_MISMATCH4596Typed UAV stores must write all declared components.
ERR_TEX1D_UNSUPPORTED4596Texture1D types are unsupported on the specified target.
ERR_RESINFO_Z_UNDEFINED_CUBEARRAY4598The array element count of GetDimensions on TextureCubeArray objects is unavailable on the specified target.
ERR_INVALID_STRUCTURED_ELEMENT_SIZE4599The structured buffer element size is invalid. It must be a multiple of specified bytes in the specified target, or it can't be larger than the specified bytes in the specified target.
ERR_MAX_ICB_REG_EXCEEDED4600The shader's indexable literal values were exceeded. The shader uses too many indexable literal values so consider using less constant arrays.
ERR_MAX_CBUFFER_SIZE_EXCEEDED4601The size of the specified constant buffer is the specified number 16-byte entries, which exceeds maximum allowed size of entries.
ERR_LIB_DEBUG_INST_UNSUPPORTED4602Debug instructions are unsupported in shader libraries.
ERR_VARYING_INDEXED_INTERFACE4603Interface calls can't be indexed with varying values.
WAR_GEN_NOT_YET_IMPLEMENTED4700A feature isn't implemented yet.
WAR_BIAS_MISSED4701A _bias opportunity was missed because the source wasn't clamped 0 to 1.
WAR_COMP_MISSED4702A complement opportunity was missed because the input result was clamped from 0 to 1.
WAR_LRP_MISSED4703Lerp can't be matched because the lerp factor is not _sat'd.
WAR_MAX_CONST_RANGE4704Literal values outside range -1 to 1 are clamped on all ps_1_x shading models.
WAR_DEPRECATED_INPUT_SEMANTIC4705The specified input semantic has been deprecated; use the specified semantic instead.
WAR_DEPRECATED_OUTPUT_SEMANTIC4706The specified output semantic has been deprecated; use the specified semantic instead.
WAR_TEXCOORD_CLAMP4707The texcoord inputs used directly (that is, other than sampling from textures) in shader body in ps_1_x are always clamped from 0 to 1.
WAR_MIDLEVEL_VARNOTFOUND4708The mid-level var was not found.
WAR_OLD_SEMANTIC4710The semantic is no longer in use.
WAR_DUPLICATE_SEMANTIC4711A duplicate non-system value semantic definition was encountered.
WAR_CANT_MATCH_LOOP4712The loop can't be matched because the loop count isn't from an integer type.
WAR_BIAS_CLAMPED4713The sample bias value is limited to the range [-16.00, 15.99] so use the specified value instead of this value.
WAR_CS_TEMP_EXCEEDED4714The sum of temp registers and indexable temp registers times the specified number of threads exceeds the recommended total number of threads so performance might be reduced.
WAR_UNWRITTEN_SI_VALUE4715A system-interpreted value is emitted that can't be written in every execution path of the shader.
WAR_PSIZE_HAS_NO_SPECIAL_MEANING4716The specified semantic has no special meaning on 10_level_9 (9_x feature levels) targets.
WAR_DEPRECATED_FEATURE4717Effects are deprecated for the D3DCompiler_47.dll or later.
477 entries

Article text from the Win32 documentation (opens in a new tab), by Microsoft, under the CC BY 4.0 (opens in a new tab) licence.