Skip to content

Commit

Permalink
Update lib.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
FlannyH committed Jan 8, 2024
1 parent 145031c commit 160f961
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ struct IRRootSignatureOpaque;
struct IRMetalLibBinaryOpaque;
struct IRShaderReflectionOpaque;
struct IRErrorOpaque;
struct IRHitGroupType;

use std::mem::MaybeUninit;

Expand All @@ -22,6 +21,11 @@ pub enum IRRaytracingPipelineFlags {
IRRaytracingPipelineFlagSkipProceduralPrimitives = 0x200,
}

enum IRHitGroupType {
IRHitGroupTypeTriangles = 0,
IRHitGroupTypeProceduralPrimitive = 1,
}

#[derive(Debug)]
struct IRCompilerFn<'lib> {
alloc_compile_and_link: libloading::Symbol<
Expand Down

0 comments on commit 160f961

Please sign in to comment.