mirror of
https://github.com/MobileGL-Dev/MobileGL
synced 2026-09-10 13:18:31 +09:00
12 lines
488 B
C++
12 lines
488 B
C++
#pragma once
|
|
#include <Includes.h>
|
|
#include <MG_State/GLState/BufferState/BufferObject.h>
|
|
|
|
namespace MobileGL::MG_Impl::GLImpl {
|
|
namespace BufferImpl {
|
|
Bool ValidateBufferTarget(BufferTarget target);
|
|
Bool ValidateBufferName(Uint index, Bool allowZero = false);
|
|
Bool ValidateBufferUsage(BufferUsage usage);
|
|
Bool ValidateBufferMappingAccess(Flags<BufferMappingAccessBit> accessBits);
|
|
} // namespace BufferImpl
|
|
} // namespace MobileGL::MG_Impl::GLImpl
|