Home | History | Annotate | Download | only in layers

Lines Matching refs:apiName

58  * @param apiName Name of API call being validated.
63 static VkBool32 validate_required_pointer(debug_report_data *report_data, const char *apiName, const char *parameterName,
69 "%s: required parameter %s specified as NULL", apiName, parameterName);
85 * @param apiName Name of API call being validated.
96 VkBool32 validate_array(debug_report_data *report_data, const char *apiName, const char *countName, const char *arrayName,
104 "PARAMCHECK", "%s: required parameter %s specified as NULL", apiName, countName);
107 skipCall |= validate_array(report_data, apiName, countName, arrayName, (*count), array, countValueRequired, arrayRequired);
121 * @param apiName Name of API call being validated.
131 VkBool32 validate_array(debug_report_data *report_data, const char *apiName, const char *countName, const char *arrayName, T count,
138 "%s: value of %s must be greater than 0", apiName, countName);
145 "%s: required parameter %s specified as NULL", apiName, arrayName);
155 * @param apiName Name of API call being validated.
164 VkBool32 validate_struct_type(debug_report_data *report_data, const char *apiName, const char *parameterName, const char *sTypeName,
171 "PARAMCHECK", "%s: required parameter %s specified as NULL", apiName, parameterName);
175 "%s: parameter %s->sType must be %s", apiName, parameterName, sTypeName);
190 * @param apiName Name of API call being validated.
203 VkBool32 validate_struct_type_array(debug_report_data *report_data, const char *apiName, const char *countName,
212 "PARAMCHECK", "%s: required parameter %s specified as NULL", apiName, countName);
215 skipCall |= validate_struct_type_array(report_data, apiName, countName, arrayName, sTypeName, (*count), array, sType,
230 * @param apiName Name of API call being validated.
242 VkBool32 validate_struct_type_array(debug_report_data *report_data, const char *apiName, const char *countName,
251 "PARAMCHECK", "%s: parameter %s must be greater than 0", apiName, countName);
258 "PARAMCHECK", "%s: required parameter %s specified as NULL", apiName, arrayName);
265 "PARAMCHECK", "%s: parameter %s[%d].sType must be %s", apiName, arrayName, i, sTypeName);
282 * @param apiName Name of API call being validated.
291 static VkBool32 validate_string_array(debug_report_data *report_data, const char *apiName, const char *countName,
300 "PARAMCHECK", "%s: parameter %s must be greater than 0", apiName, countName);
307 "PARAMCHECK", "%s: required parameter %s specified as NULL", apiName, arrayName);
314 "PARAMCHECK", "%s: required parameter %s[%d] specified as NULL", apiName, arrayName, i);
330 * @param apiName Name of API call being validated.
338 static VkBool32 validate_struct_pnext(debug_report_data *report_data, const char *apiName, const char *parameterName,
346 "PARAMCHECK", "%s: value of %s must be NULL", apiName, parameterName);
360 apiName, parameterName, current->sType, allowedStructNames);
365 apiName, parameterName, typeName.c_str(), allowedStructNames);