FNullDynamicRHI::RHICreateUniformBuffer

FlushType: Thread safe, but varies depending on the RHI.

Windows
MacOS
Linux

Override Hierarchy

FDynamicRHI::RHICreateUniformBuffer()

FNullDynamicRHI::RHICreateUniformBuffer()

References

Module

NullDrv

Header

/Engine/Source/Runtime/NullDrv/Public/NullRHI.h

Include

#include "NullRHI.h"

Syntax

virtual FUniformBufferRHIRef RHICreateUniformBuffer
(
    const void * Contents,
    const FRHIUniformBufferLayout & Layout,
    EUniformBufferUsage Usage,
    EUniformBufferValidation Validation
)

Remarks

Creates a uniform buffer. The contents of the uniform buffer are provided in a parameter, and are immutable. CAUTION: Even though this is marked as threadsafe, it is only valid to call from the render thread or the RHI thread. Thus is need not be threadsafe on platforms that do not support or aren't using an RHIThread

Returns

The new uniform buffer.

Parameters

Parameter

Description

Contents

A pointer to a memory block of size NumBytes that is copied into the new uniform buffer.

NumBytes

The number of bytes the uniform buffer should contain.

Help shape the future of Unreal Engine documentation! Tell us how we're doing so we can serve you better.
Take our survey
Dismiss