[][src]Struct tm_sys::ffi::tm_render_graph_toolbox_api

#[repr(C)]pub struct tm_render_graph_toolbox_api {
    pub fullscreen_pass: Option<unsafe extern "C" fn(module: *mut tm_render_graph_module_o, setup: *mut tm_fullscreen_pass_setup_t, profiling_scope: *const c_char)>,
    pub custom_fullscreen_pass: Option<unsafe extern "C" fn(module: *mut tm_render_graph_module_o, setup: tm_custom_fullscreen_setup, const_data: *const c_void, const_data_size: u32, profiling_scope: *const c_char)>,
    pub material_pass: Option<unsafe extern "C" fn(module: *mut tm_render_graph_module_o, setup: *mut tm_material_pass_setup_t, profiling_scope: *const c_char)>,
    pub debug_visualization_pass: Option<unsafe extern "C" fn(module: *mut tm_render_graph_module_o, setup: *mut tm_debug_visualization_pass_setup_t, profiling_scope: *const c_char)>,
    pub setup_render_target_writes: Option<unsafe extern "C" fn(color_targets: *const tm_pass_render_target_t, depth_stencil_target: *const tm_pass_render_target_t, buffer_writes: *const tm_pass_buffer_write_t, graph_setup: *mut tm_render_graph_setup_o)>,
    pub setup_render_target_descs: Option<unsafe extern "C" fn(color_targets: *mut tm_pass_render_target_t, depth_stencil_target: *mut tm_pass_render_target_t)>,
    pub setup_fullscreen_pass: Option<unsafe extern "C" fn(setup: *mut tm_fullscreen_pass_setup_t, runtime_data: *mut c_void, graph_setup: *mut tm_render_graph_setup_o)>,
    pub image_desc: Option<unsafe extern "C" fn(graph_setup: *mut tm_render_graph_setup_o, resource_name: u64) -> *const tm_renderer_image_buffer_t>,
}

Fields

fullscreen_pass: Option<unsafe extern "C" fn(module: *mut tm_render_graph_module_o, setup: *mut tm_fullscreen_pass_setup_t, profiling_scope: *const c_char)>custom_fullscreen_pass: Option<unsafe extern "C" fn(module: *mut tm_render_graph_module_o, setup: tm_custom_fullscreen_setup, const_data: *const c_void, const_data_size: u32, profiling_scope: *const c_char)>material_pass: Option<unsafe extern "C" fn(module: *mut tm_render_graph_module_o, setup: *mut tm_material_pass_setup_t, profiling_scope: *const c_char)>debug_visualization_pass: Option<unsafe extern "C" fn(module: *mut tm_render_graph_module_o, setup: *mut tm_debug_visualization_pass_setup_t, profiling_scope: *const c_char)>setup_render_target_writes: Option<unsafe extern "C" fn(color_targets: *const tm_pass_render_target_t, depth_stencil_target: *const tm_pass_render_target_t, buffer_writes: *const tm_pass_buffer_write_t, graph_setup: *mut tm_render_graph_setup_o)>setup_render_target_descs: Option<unsafe extern "C" fn(color_targets: *mut tm_pass_render_target_t, depth_stencil_target: *mut tm_pass_render_target_t)>setup_fullscreen_pass: Option<unsafe extern "C" fn(setup: *mut tm_fullscreen_pass_setup_t, runtime_data: *mut c_void, graph_setup: *mut tm_render_graph_setup_o)>image_desc: Option<unsafe extern "C" fn(graph_setup: *mut tm_render_graph_setup_o, resource_name: u64) -> *const tm_renderer_image_buffer_t>

Trait Implementations

impl Clone for tm_render_graph_toolbox_api[src]

impl Copy for tm_render_graph_toolbox_api[src]

impl Debug for tm_render_graph_toolbox_api[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.