mirror of
https://github.com/MobileGL-Dev/MobileGL
synced 2026-09-10 05:08:31 +09:00
12 lines
464 B
C++
12 lines
464 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 ValidateBufferUsage(BufferUsage usage);
|
|
bool ValidateBufferMappingAccess(Flags<BufferMappingAccessBit> accessBits);
|
|
} // namespace BufferImpl
|
|
} // namespace MobileGL::MG_Impl::GLImpl
|