亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? errors.h

?? cg編譯器
?? H
?? 第 1 頁 / 共 2 頁
字號:
#define ERROR___TOO_MANY_PARAMS             1104, "too many parameters in function call"
#define ERROR___CALL_OF_NON_FUNCTION        1105, "cannot call a non-function"
#define ERROR_S_OVERLOAD_DIFF_ONLY_QUALS    1106, "overloaded function declaration \"%s\" differs only in parameter qualifiers"
#define ERROR_S_OVERLOAD_DIFF_ONLY_RETURN   1107, "overloaded function declaration \"%s\" differs only in return type"
#define ERROR_S_NO_STATEMENTS               1108, "function \"%s\" has no statements"
#define ERROR_S_FUN_TYPE_INVALID            1109, "function type not allowed for parameter \"%s\""
#define ERROR_S_FUNCTION_HAS_NO_RETURN      1110, "function \"%s\" has no return statement"
#define ERROR_D_OUT_PARAM_NOT_LVALUE        1111, "non-lvalue actual parameter #%d cannot be out parameter"
#define ERROR_D_OUT_PARAM_IS_CONST          1112, "const qualified actual parameter #%d cannot be out parameter"
#define ERROR_D_OUT_PARAM_NOT_SAME_TYPE     1113, "actual parameter #%d must be same type as formal out parameter"
#define ERROR_S_NON_UNIFORM_PARAM_INIT      1114, "only uniform parameters can be initialized \"%s\""
#define ERROR_S_NO_COMPAT_OVERLOADED_FUN    1115, "unable to find compatible overloaded function \"%s\""

#define ERROR___QSTN_SCALAR_3RD_OPND_EXPECTED   1201, "expected scalar third operand to \"? :\""
#define ERROR___QSTN_VECTOR_3RD_OPND_EXPECTED   1202, "expected vector third operand to \"? :\""
#define ERROR___QSTN_VECTOR_23_OPNDS_EXPECTED   1203, "expected vector second and third operands to \"? :\""
#define ERROR___QSTN_23_OPNDS_INCOMPAT      1204, "incompatible second and third operands to \"? :\""
#define ERROR___QSTN_23_OPNDS_INVALID       1205, "invalid second and third operands to \"? :\""
#define ERROR___QSTN_INVALID_1ST_OPERAND    1206, "invalid first operand to \"? :\""
#define ERROR___QSTN_1ST_OPERAND_NOT_SCALAR 1207, "expected scalar first operand to \"? :\""

#define ERROR___REF_TO_VAR_WITH_NO_VALUE    1301, "use of variable with no defined value"

// Errors detected when compiling

#define ERROR___NO_PROGRAM                  3001, "no program defined"
#define ERROR_S_CALL_UNDEF_FUN              3002, "call to undefined function \"%s\""
#define ERROR___NO_ERROR                    3003, "no error detected since previous error token"

// Non-supported language features

#define ERROR_S_UNSUPPORTED_OPERATOR        4001, "the C operator \"%s\" is not defined in this language"
#define ERROR_S_UNEXPECTED_COLON            4002, "unexpected \": %s\""

// Profile specific limitations globally shared by any profile

#define ERROR_S_CONNECTOR_TYPE_INVALID      5001, "connector type \"%s\" is not valid for this profile"
#define ERROR_S_CONNECT_FOR_OUTPUT          5002, "connector type \"%s\" only valid as output for this profile"
#define ERROR_S_CONNECT_FOR_INPUT           5003, "connector type \"%s\" only valid as input for this profile"
#define ERROR_S_INTERNAL_FOR_FUN            5004, "__internal modifier only for functions \"%s\""
#define ERROR_S_RECURSION                   5005, "recursive call to function \"%s\""
#define ERROR___PACKED_DIM_EXCEEDS_4        5006, "size of packed dimension cannot exceed 4"
#define ERROR___LOW_DIM_UNSPECIFIED         5007, "only size of greatest dimension can be unspecified"
#define ERROR___NUM_DIMS_EXCEEDS_3          5008, "number of dimensions of array cannot exceed 3"
#define ERROR_S_INT_NOT_ALLOWED             5009, "type \"int\" definitions not allowed \"%s\""
#define ERROR___IF_NOT_SUPPORTED            5010, "profile does not support \"if\" statements"
#define ERROR___WHILE_NOT_SUPPORTED         5011, "profile does not support \"while\" statements"
#define ERROR___DO_NOT_SUPPORTED            5012, "profile does not support \"do\" statements"
#define ERROR___FOR_NOT_SUPPORTED           5013, "profile does not support \"for\" statements"
#define ERROR___DISCARD_NOT_SUPPORTED       5014, "profile does not support \"discard\" statements"
#define ERROR___VECTOR_EXPR_LEN_GR_4        5015, "length of vector expressions cannot exceed 4"
#define ERROR_S_VECTOR_OPERAND_GR_4         5016, "length of vector operands to \"%s\" cannot exceed 4"
#define ERROR_S_MATRIX_OPERAND_GR_4         5017, "dimensions of matrix operands to \"%s\" cannot exceed 4"
#define ERROR___CONSTRUCTER_VECTOR_LEN_GR_4 5018, "length of constructed vectors cannot exceed 4"
#define ERROR_S_ONE_PROGRAM                 5019, "one program per compilation, program \"%s\" also defined"
#define ERROR_C_UNSUPPORTED_FP_SUFFIX       5020, "profile does not support float constant suffix \"%c\""

#define ERROR_S_PROGRAM_PARAM_NOT_UNIFORM   5028, "non-connector program parameter \"%s\" must have uniform domain"
#define ERROR_S_PROGRAM_MUST_RETURN_STRUCT  5029, "program \"%s\" must return a struct"

//#define ERROR_SS_CMEMBER_NOT_SCALAR_VECTOR  5032, "connector member \"%s.%s\" is not a scalar or vector"
//#define ERROR_SS_CMEMBER_NOT_NUMERIC        5033, "connector member \".%s%s\" is not a numeric type"
//#define ERROR_SS_CMEMBER_SIZE_TOO_LARGE     5034, "connector member \".%s%s\" has more elements than bound register does"
#define ERROR_S_CMEMBER_NOT_WRITABLE        5035, "connector member \"%s\" is not writable in this profile"
#define ERROR_S_CMEMBER_NOT_READABLE        5036, "connector member \"%s\" is not readable in this profile"
#define ERROR_S_CMEMBER_NOT_VISIBLE         5037, "connector member \"%s\" is not visible in this profile"
//#define ERROR_S_CMEMBER_BINDING_ERROR       5038, "cannot locate suitable register to bind connector member \"%s\""
//#define ERROR_SSS_CMEMBER_RESERVED_NAME     5039, "reserved connector member \"%s.%s\" cannot be bound to register \"%s\""
#define ERROR_S_INCOMPATIBLE_BIND_DIRECTIVE 5040, "type of parameter \"%s\" incompatible with bind directive"
#define ERROR_S_PARAMETER_BINDING_ERROR     5041, "cannot locate suitable resource to bind parameter \"%s\""
#define ERROR___RETURN_NOT_LAST             5042, "profile requires \"return\" statement to be last statement in function"
#define ERROR___ARRAY_INDEX_NOT_CONSTANT    5043, "profile requires index expression to be compile-time constant"
#define ERROR___MATRIX_NOT_SIMPLE           5044, "profile requires matrices to be simple variables"
#define ERROR_S_ILLEGAL_PARAM_TO_MAIN       5045, "illegal parameter to main \"%s\""
#define ERROR_S_MAIN_PARAMS_CANT_BE_INOUT   5046, "parameters to main cannot be in out \"%s\""
#define ERROR_S_UNIF_BIND_TO_NON_UNIF_VAR   5047, "non-uniform variable bound to uniform register in bind directive \"%s\""
#define ERROR_S_NON_UNIF_BIND_TO_UNIF_VAR   5048, "uniform variable bound to non-uniform register in bind directive \"%s\""
#define ERROR_S_ILLEGAL_TYPE_UNIFORM_VAR    5049, "type not allowed for uniform variables \"%s\""
#define ERROR_S_UNPACKED_ARRAY              5050, "profile does not support arrays of non-packed types \"%s\""

//#define ERROR_S_SEMANTICS_CANT_HAVE_INDEX   5101, "semantics attribute \"%s\" cannot have a numeric index"
#define ERROR_S_SEMANTICS_INDEX_TOO_BIG     5102, "semantics attribute \"%s\" has too big of a numeric index"
#define ERROR_S_STATIC_CANT_HAVE_SEMANTICS  5103, "static variables cannot have semantics \"%s\""
#define ERROR_S_NO_LOCAL_SEMANTICS          5104, "local variables cannot have semantics \"%s\""
#define ERROR_S_NON_STATIC_SEM_NOT_UNIFORM  5105, "non-static global variables with semantics must be declared uniform \"%s\""
#define ERROR_S_SEMANTICS_NON_VARIABLE      5106, "semantics not allowed on non-variable \"%s\""
#define ERROR_S_SEM_VAR_NOT_SCALAR_VECTOR   5107, "semantics not allowed on variable which is not a scalar or vector \"%s\""
#define ERROR_S_UNKNOWN_SEMANTICS           5108, "unknown semantics specified \"%s\""
#define ERROR_S_SEMANTIC_DOMAIN_CONFLICT    5109, "variable domain conflicts with semantics \"%s\""
#define ERROR_S_UNIFORM_ARG_CANT_BE_OUT     5110, "parameters with uniform domain cannot be out parameters \"%s\""
#define ERROR_S_OUT_QUALIFIER_IN_SEMANTIC   5111, "out qualifier cannot be used with in sematics \"%s\""
#define ERROR_S_IN_QUALIFIER_OUT_SEMANTIC   5112, "in qualifier cannot be used with out sematics \"%s\""
#define ERROR_S_MAIN_ARG_NO_SEM_NOT_UNIFORM 5113, "parameters to main with no semantics must be uniform domain \"%s\""

#define ERROR_S_NESTED_SEMANTIC_STRUCT      5115, "nested structs cannot have semantics \"%s\""
#define ERROR_S_SEMANTIC_NOT_DEFINED_VOUT   5116, "no varying output semantics defined that match variable/member name \"%s\""
#define ERROR_S_NON_STATIC_GLOBAL_TYPE_ERR  5117, "unsupported type for uniform semantics; not allowed for non-static globals \"%s\""
#define ERROR_S_SEMANTIC_TYPE_CONFLICT      5118, "variable type conflicts with semantics \"%s\""
#define ERROR_SS_VAR_SEMANTIC_NOT_VISIBLE   5119, "variable/member \"%s\" has semantic \"%s\" which is not visible in this profile"
#define ERROR_S_NO_TEXUNITS_AVAILABLE       5120, "no texture units left to bind to \"%s\""

#define ERROR_S_INVALID_INTERNAL_FUNCTION   5201, "invalid internal function declaration for \"%s\""

// Profile specific features not yet implemented

#define ERROR___IF_NOT_YET_IMPLEMENTED      5501, "\"if\" statements not yet implemented"
#define ERROR___VECTOR_CONSTR_NOT_NUM_BOOL  5502, "constructed vector requires numeric or bool elements"
#define ERROR___VECTOR_CONSTR_NOT_SCALAR    5503, "non-scalar not allowed in vector constructor"
#define ERROR_S_STRUCT_PARAM_NOT_YET        5504, "struct parameters not yet implemented \"%s\""
#define ERROR_S_CONNECT_PARAM_NOT_YET       5505, "connector parameters not yet implemented \"%s\""
#define ERROR___ARRAY2_INIT_NOT_DONE        5507, "initialization of arrays with more than 1 dimension not yet implemented"
#define ERROR_S_UNSUPPORTED_PROFILE_OP      5508, "the operator \"%s\" is not supported by this profile"

// Numbers 6000 to 6999 are reserved for profile specific messages

// Warnings:

#define WARNING___QUALIFIER_SPECIFIED_TWICE 7001, "qualifier specified twice"
#define WARNING___DOMAIN_SPECIFIED_TWICE    7002, "domain specified twice"
#define WARNING_S_VOID_FUN_HAS_NO_OUT_ARGS  7003, "void function \"%s\" has no out parameters"
#define WARNING_S_UNBOUND_CONNECTOR_MEMBER  7004, "unbound connector member \"%s\""
#define WARNING_S_CMEMBER_NOT_WRITTEN       7005, "no value written to connector member \"%s\""
#define WARNING_S_UNINITIALIZED_VAR_USED    7006, "uninitialized variable \"%s\" used"
#define WARNING_S_FORWARD_SEMANTICS_IGNORED 7007, "\"%s\" semantics in forward declaration ignored"
#define WARNING_S_SEMANTICS_AND_BINDING     7008, "non-uniform variable has both semantics and binding \"%s\""
#define WARNING_S_CANT_BIND_UNIFORM_VAR     7009, "cannot locate default uniform binding for \"%s\""

// CPP wornings
#define WARNING___CPP_MACRO_REDEFINED       7101, "Macro %s redefined"
#define WARNING___CPP_IF_MISMATCH           7102, "unmatched #%s"


// "Helper" messages, trying to explain common errors

// Internal compiler error messages

#define ERROR_S_TYPE_NAME_NOT_FOUND         9001, "type name not found \"%s\""
#define ERROR_S_NAME_NOT_A_TYPE             9002, "name is not a type name \"%s\""
#define ERROR_S_NO_CODE_GENERATOR           9003, "missing code generator for program profile \"%s\""
#define ERROR_S_SYMBOL_NOT_FUNCTION         9004, "symbol not function \"%s\""
#define ERROR_S_SYMBOL_TYPE_NOT_FUNCTION    9005, "symbol's type category not function \"%s\""
#define ERROR___TYPE_NOT_ARRAY              9006, "type not an array"
#define ERROR_S_NO_CODE_HEADER              9007, "missing code header function for program profile \"%s\""
#define ERROR_S_MALLOC_FAILED               9008, "malloc failed in \"%s\""
#define ERROR___NO_MATRIX_DECONSTRUCTION    9009, "matrix deconstruction not supported"

// Misc. notices

#define NOTICE_SSS_CMEMBER_ALLOCATED        9501, "connector member \"%s.%s\" allocated to register \"%s\""

#endif // !defined(__ERRORS_H)

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美精品三级日韩久久| 欧美三级日韩三级国产三级| 欧美精品丝袜久久久中文字幕| 久久午夜老司机| 五月天激情综合| 色综合天天综合在线视频| 久久久久99精品一区| 天堂蜜桃91精品| 国产婷婷色一区二区三区四区| 午夜精品视频在线观看| 97精品国产97久久久久久久久久久久 | 国产精品国产三级国产三级人妇| 日本一区中文字幕| 在线看一区二区| 国产精品传媒视频| 国产成人精品免费网站| 欧美成人a∨高清免费观看| 亚洲电影你懂得| 色88888久久久久久影院野外| 国产女人18水真多18精品一级做| 精品一区精品二区高清| 欧美一区二区三区精品| 亚洲高清在线精品| 色综合久久中文综合久久牛| 日本一区二区免费在线| 精品影视av免费| 日韩精品一区二| 免费欧美在线视频| 制服丝袜在线91| 亚洲aaa精品| 欧美色老头old∨ideo| 一区二区三区色| 97久久精品人人爽人人爽蜜臀| 中文字幕高清不卡| 成人午夜av影视| 国产三级欧美三级日产三级99| 激情文学综合网| 2022国产精品视频| 国产精品中文字幕一区二区三区| 精品日韩欧美一区二区| 免费观看在线色综合| 欧美一区二区三区在| 热久久一区二区| 日韩欧美国产午夜精品| 免费不卡在线视频| 精品国产一二三区| 激情欧美一区二区| 2021国产精品久久精品| 国产麻豆精品视频| 亚洲国产精品成人综合色在线婷婷 | ...中文天堂在线一区| 波多野结衣中文字幕一区二区三区| 国产精品视频一二三区| aaa亚洲精品一二三区| 亚洲欧洲综合另类| 欧美三区免费完整视频在线观看| 亚洲1区2区3区4区| 欧美成人乱码一区二区三区| 国产麻豆91精品| 日本一区二区三区国色天香| jizzjizzjizz欧美| 亚洲一区二区成人在线观看| 欧美三区在线观看| 美女网站色91| 久久久午夜精品| 99视频热这里只有精品免费| 成人欧美一区二区三区视频网页 | 国内不卡的二区三区中文字幕| 欧美精品一区二区三区高清aⅴ| 国产美女精品人人做人人爽| 国产精品剧情在线亚洲| 欧美性色欧美a在线播放| 秋霞午夜鲁丝一区二区老狼| 久久午夜国产精品| 91香蕉国产在线观看软件| 五月天中文字幕一区二区| 日韩三级伦理片妻子的秘密按摩| 国产成人精品1024| 亚洲制服丝袜在线| 精品日韩在线观看| 99久久精品一区| 爽爽淫人综合网网站| 久久青草欧美一区二区三区| 91麻豆国产自产在线观看| 五月婷婷久久丁香| 欧美激情在线一区二区三区| 91福利在线免费观看| 久国产精品韩国三级视频| 国产精品激情偷乱一区二区∴| 欧美在线观看禁18| 精品一区二区日韩| 亚洲人成在线播放网站岛国| 884aa四虎影成人精品一区| 国产成人av福利| 一二三区精品视频| 精品少妇一区二区三区| 色婷婷一区二区三区四区| 另类中文字幕网| 亚洲人成7777| 精品va天堂亚洲国产| 日本福利一区二区| 国内精品自线一区二区三区视频| 亚洲九九爱视频| 精品1区2区在线观看| 在线影院国内精品| 国产乱码一区二区三区| 亚洲国产精品影院| 国产欧美1区2区3区| 欧美久久久久久蜜桃| 成人不卡免费av| 久草这里只有精品视频| 亚洲综合色在线| 亚洲国产成人一区二区三区| 欧美一区二区三区婷婷月色 | 欧美aaaaaa午夜精品| 成人免费小视频| 久久综合九色综合97婷婷| 欧美精品18+| 91色porny在线视频| 国产一区 二区| 蜜桃传媒麻豆第一区在线观看| 一区二区三区视频在线观看| 亚洲国产高清在线| 精品福利一二区| 91麻豆精品91久久久久久清纯| 色88888久久久久久影院按摩| 国产91精品入口| 激情综合色播五月| 日韩影院精彩在线| 亚洲一二三区在线观看| 亚洲欧美中日韩| 中文在线一区二区 | 欧美无乱码久久久免费午夜一区| 丁香激情综合国产| 精品在线免费视频| 日本女优在线视频一区二区| 亚洲夂夂婷婷色拍ww47| 亚洲三级在线播放| 亚洲欧美影音先锋| 国产精品美女www爽爽爽| 26uuu国产日韩综合| 欧美大尺度电影在线| 欧美亚洲综合在线| 日本精品裸体写真集在线观看| va亚洲va日韩不卡在线观看| 国产精品一区不卡| 国产电影一区在线| 国产一区二区三区精品欧美日韩一区二区三区| 日本中文字幕一区| 日本不卡一区二区三区| 免费在线看成人av| 日韩不卡在线观看日韩不卡视频| 亚洲成人av一区二区三区| 亚洲高清视频的网址| 亚洲国产视频网站| 一卡二卡三卡日韩欧美| 亚洲一二三四久久| 亚洲一级不卡视频| 午夜久久久久久久久久一区二区| 午夜私人影院久久久久| 午夜精品福利一区二区蜜股av| 午夜不卡在线视频| 日本特黄久久久高潮| 免费看欧美美女黄的网站| 奇米精品一区二区三区四区| 美女性感视频久久| 韩国三级在线一区| 国产精品一二三四区| 国产河南妇女毛片精品久久久| 国产盗摄精品一区二区三区在线 | 亚洲v中文字幕| 日韩成人dvd| 国产在线播放一区三区四| 国产伦精品一区二区三区免费| 激情综合网av| 粉嫩欧美一区二区三区高清影视| www.日本不卡| 91福利资源站| 91精品国产综合久久精品性色| 日韩天堂在线观看| 久久免费视频色| 亚洲欧美综合在线精品| 一区二区三区日韩欧美| 日韩不卡一区二区| 国产真实乱偷精品视频免| 成人avav在线| 欧美亚洲国产bt| 精品国产三级电影在线观看| 国产欧美日韩综合精品一区二区| 亚洲婷婷国产精品电影人久久| 亚洲成人免费电影| 国内久久精品视频| 色综合天天综合网国产成人综合天 | 国产成人在线色| 色拍拍在线精品视频8848| 欧美理论电影在线| 久久这里只有精品首页| 国产精品乱码妇女bbbb| 亚洲不卡一区二区三区| 国产黄人亚洲片|