all: replace ustr literals by cstr literals
This commit is contained in:
parent
1a0181f2ac
commit
e2cb37c4d8
5 changed files with 17 additions and 21 deletions
|
|
@ -7,8 +7,7 @@ use {
|
|||
},
|
||||
RenderError,
|
||||
},
|
||||
std::rc::Rc,
|
||||
uapi::Ustr,
|
||||
std::{ffi::CStr, rc::Rc},
|
||||
};
|
||||
|
||||
pub struct GlProgram {
|
||||
|
|
@ -51,11 +50,11 @@ impl GlProgram {
|
|||
Ok(res)
|
||||
}
|
||||
|
||||
pub unsafe fn get_uniform_location(&self, name: &Ustr) -> GLint {
|
||||
pub unsafe fn get_uniform_location(&self, name: &CStr) -> GLint {
|
||||
(self.ctx.dpy.gles.glGetUniformLocation)(self.prog, name.as_ptr() as _)
|
||||
}
|
||||
|
||||
pub unsafe fn get_attrib_location(&self, name: &Ustr) -> GLint {
|
||||
pub unsafe fn get_attrib_location(&self, name: &CStr) -> GLint {
|
||||
(self.ctx.dpy.gles.glGetAttribLocation)(self.prog, name.as_ptr() as _)
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -30,7 +30,6 @@ use {
|
|||
fmt::{Debug, Formatter},
|
||||
rc::Rc,
|
||||
},
|
||||
uapi::ustr,
|
||||
};
|
||||
|
||||
pub(crate) struct TexProg {
|
||||
|
|
@ -44,13 +43,13 @@ pub(crate) struct TexProg {
|
|||
impl TexProg {
|
||||
unsafe fn from(prog: GlProgram, alpha_multiplier: bool) -> Self {
|
||||
let alpha = match alpha_multiplier {
|
||||
true => prog.get_uniform_location(ustr!("alpha")),
|
||||
true => prog.get_uniform_location(c"alpha"),
|
||||
false => 0,
|
||||
};
|
||||
Self {
|
||||
pos: prog.get_attrib_location(ustr!("pos")),
|
||||
texcoord: prog.get_attrib_location(ustr!("texcoord")),
|
||||
tex: prog.get_uniform_location(ustr!("tex")),
|
||||
pos: prog.get_attrib_location(c"pos"),
|
||||
texcoord: prog.get_attrib_location(c"texcoord"),
|
||||
tex: prog.get_uniform_location(c"tex"),
|
||||
alpha,
|
||||
prog,
|
||||
}
|
||||
|
|
@ -164,8 +163,8 @@ impl GlRenderContext {
|
|||
tex_internal,
|
||||
tex_external,
|
||||
|
||||
fill_prog_pos: fill_prog.get_attrib_location(ustr!("pos")),
|
||||
fill_prog_color: fill_prog.get_uniform_location(ustr!("color")),
|
||||
fill_prog_pos: fill_prog.get_attrib_location(c"pos"),
|
||||
fill_prog_color: fill_prog.get_uniform_location(c"color"),
|
||||
fill_prog,
|
||||
|
||||
gfx_ops: Default::default(),
|
||||
|
|
|
|||
|
|
@ -63,7 +63,7 @@ impl VulkanInstance {
|
|||
.collect();
|
||||
let app_info = ApplicationInfo::default()
|
||||
.api_version(API_VERSION)
|
||||
.application_name(ustr!("jay").as_c_str().unwrap())
|
||||
.application_name(c"jay")
|
||||
.application_version(1);
|
||||
let mut severity = DebugUtilsMessageSeverityFlagsEXT::empty()
|
||||
| DebugUtilsMessageSeverityFlagsEXT::ERROR
|
||||
|
|
|
|||
|
|
@ -18,7 +18,6 @@ use {
|
|||
PrimitiveTopology, PushConstantRange, SampleCountFlags, ShaderStageFlags,
|
||||
},
|
||||
std::{mem, rc::Rc, slice},
|
||||
uapi::ustr,
|
||||
};
|
||||
|
||||
pub(super) struct VulkanPipeline {
|
||||
|
|
@ -87,16 +86,15 @@ impl VulkanDevice {
|
|||
let destroy_layout =
|
||||
OnDrop(|| unsafe { self.device.destroy_pipeline_layout(pipeline_layout, None) });
|
||||
let pipeline = {
|
||||
let main = ustr!("main").as_c_str().unwrap();
|
||||
let stages = [
|
||||
PipelineShaderStageCreateInfo::default()
|
||||
.stage(ShaderStageFlags::VERTEX)
|
||||
.module(info.vert.module)
|
||||
.name(main),
|
||||
.name(c"main"),
|
||||
PipelineShaderStageCreateInfo::default()
|
||||
.stage(ShaderStageFlags::FRAGMENT)
|
||||
.module(info.frag.module)
|
||||
.name(main),
|
||||
.name(c"main"),
|
||||
];
|
||||
let input_assembly_state = PipelineInputAssemblyStateCreateInfo::default()
|
||||
.topology(PrimitiveTopology::TRIANGLE_STRIP);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue