From: Hans-Kristian Arntzen Date: Fri, 21 May 2021 16:43:08 +0000 (+0200) Subject: Merge pull request #1679 from okuoku/fix-c-sample-code X-Git-Tag: upstream/2021.4.22^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ff61890722a91e97c44940494be5b6eed0d5ff5b;hp=faec1a8643d260b0fe1df4c106e6abce97532c7f;p=platform%2Fupstream%2FSPIRV-Cross.git Merge pull request #1679 from okuoku/fix-c-sample-code Fix C sample code in README.md --- diff --git a/README.md b/README.md index 5f6e7be..7d8990b 100644 --- a/README.md +++ b/README.md @@ -161,12 +161,12 @@ for (i = 0; i < count; i++) } // Modify options. -spvc_compiler_create_compiler_options(context, &options); +spvc_compiler_create_compiler_options(compiler_glsl, &options); spvc_compiler_options_set_uint(options, SPVC_COMPILER_OPTION_GLSL_VERSION, 330); spvc_compiler_options_set_bool(options, SPVC_COMPILER_OPTION_GLSL_ES, SPVC_FALSE); spvc_compiler_install_compiler_options(compiler_glsl, options); -spvc_compiler_compile(compiler, &result); +spvc_compiler_compile(compiler_glsl, &result); printf("Cross-compiled source: %s\n", result); // Frees all memory we allocated so far.