aboutsummaryrefslogtreecommitdiff
path: root/loader/loader.c
diff options
context:
space:
mode:
authorNekotekina <nekotekina@gmail.com>2017-06-11 13:13:07 +0300
committerMark Lobodzinski <mark@lunarg.com>2017-06-12 07:32:15 -0600
commit898f916d8468dcbccf9ee013fc451139fa1e92cb (patch)
tree51c2bfe209e4a0939ea4e7dd0e38ace6edf1d414 /loader/loader.c
parent6ecd90384d9db6ac6666a2ef4f594c735b55ae4f (diff)
downloadusermoji-898f916d8468dcbccf9ee013fc451139fa1e92cb.tar.xz
loader: replace UTF-8 “” with "
Diffstat (limited to 'loader/loader.c')
-rw-r--r--loader/loader.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/loader/loader.c b/loader/loader.c
index cd249cb3..553967ad 100644
--- a/loader/loader.c
+++ b/loader/loader.c
@@ -2075,11 +2075,11 @@ static VkResult loader_read_json_layer(const struct loader_instance *inst, struc
// The following are required in the "layer" object:
// (required) "name"
// (required) "type"
-// (required) “library_path”
-// (required) “api_version”
-// (required) “implementation_version”
-// (required) “description”
-// (required for implicit layers) “disable_environment”
+// (required) "library_path"
+// (required) "api_version"
+// (required) "implementation_version"
+// (required) "description"
+// (required for implicit layers) "disable_environment"
#define GET_JSON_OBJECT(node, var) \
{ \
var = cJSON_GetObjectItem(node, #var); \
@@ -2482,7 +2482,7 @@ static inline bool layer_json_supports_layers_tag(const layer_json_version *laye
static VkResult loader_add_layer_properties(const struct loader_instance *inst, struct loader_layer_list *layer_instance_list,
cJSON *json, bool is_implicit, char *filename) {
// The following Fields in layer manifest file that are required:
- // - “file_format_version”
+ // - "file_format_version"
// - If more than one "layer" object are used, then the "layers" array is
// required
VkResult result = VK_ERROR_INITIALIZATION_FAILED;