Add small helpful comment in the generated code

This commit is contained in:
Pierre Krieger 2016-02-06 21:45:29 +01:00
parent 0e62886ed3
commit 3f18306a1a

View File

@ -187,7 +187,7 @@ fn write_entry_point(doc: &parse::Spirv, instruction: &parse::Instruction) -> St
pub fn {ep_name}_entry_point(&self) -> {ty} {{ pub fn {ep_name}_entry_point(&self) -> {ty} {{
unsafe {{ unsafe {{
#[allow(dead_code)] #[allow(dead_code)]
static NAME: [u8; {ep_name_lenp1}] = [{encoded_ep_name}, 0]; static NAME: [u8; {ep_name_lenp1}] = [{encoded_ep_name}, 0]; // "{ep_name}"
self.shader.{f_name}(::std::ffi::CStr::from_ptr(NAME.as_ptr() as *const _)) self.shader.{f_name}(::std::ffi::CStr::from_ptr(NAME.as_ptr() as *const _))
}} }}
}} }}