render: implement a vulkan renderer
This commit is contained in:
parent
4ba8550da8
commit
cf332e8436
66 changed files with 4287 additions and 239 deletions
|
|
@ -1,5 +1,7 @@
|
|||
use {
|
||||
crate::utils::{bitflags::BitflagsExt, ptr_ext::PtrExt, stack::Stack},
|
||||
crate::utils::{
|
||||
bitflags::BitflagsExt, clonecell::UnsafeCellCloneSafe, ptr_ext::PtrExt, stack::Stack,
|
||||
},
|
||||
bstr::{BString, ByteSlice},
|
||||
std::{
|
||||
fmt::{Debug, Formatter},
|
||||
|
|
@ -393,6 +395,8 @@ pub enum EdidParseContext {
|
|||
VideoInputDefinition,
|
||||
}
|
||||
|
||||
unsafe impl UnsafeCellCloneSafe for EdidParseContext {}
|
||||
|
||||
struct EdidPushedContext {
|
||||
stack: Rc<Stack<(usize, EdidParseContext)>>,
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue