最初コミット

This commit is contained in:
2026-04-21 05:29:07 +09:00
commit 907a2cd9e8
443 changed files with 75875 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
/// @ref core
/// @file glm/ext/vector_bool3.hpp
#pragma once
#include "../detail/type_vec3.hpp"
namespace glm
{
/// @addtogroup core_vector
/// @{
/// 3 components vector of boolean.
///
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.5 Vectors</a>
typedef vec<3, bool, defaultp> bvec3;
/// @}
}//namespace glm