├── .gitignore ├── ReadMe.md ├── app ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ ├── cpp │ ├── 0010_gl_transform.cpp │ ├── 0010_gl_transform.h │ ├── 0011_gl_transform2.cpp │ ├── 0011_gl_transform2.h │ ├── 0012_gl_coordinate.cpp │ ├── 0012_gl_coordinate.h │ ├── 0013_gl_camera.cpp │ ├── 0013_gl_camera.h │ ├── 0014_gl_light.cpp │ ├── 0014_gl_light.h │ ├── 0015_gl_light_diffuse.cpp │ ├── 0015_gl_light_diffuse.h │ ├── 0016_gl_light_specular.cpp │ ├── 0016_gl_light_specular.h │ ├── 0017_gl_light_material.cpp │ ├── 0017_gl_light_material.h │ ├── 0018_gl_light_maps.cpp │ ├── 0018_gl_light_maps.h │ ├── 0019_gl_light_maps_specular.cpp │ ├── 0019_gl_light_maps_specular.h │ ├── 001_gl_color_app.cpp │ ├── 001_gl_color_app.h │ ├── 0020_gl_light_directional.cpp │ ├── 0020_gl_light_directional.h │ ├── 0021_gl_light_point.cpp │ ├── 0021_gl_light_point.h │ ├── 0022_gl_light_spot.cpp │ ├── 0022_gl_light_spot.h │ ├── 002_gl_point_app.cpp │ ├── 002_gl_point_app.h │ ├── 003_gl_lines_app.cpp │ ├── 003_gl_lines_app.h │ ├── 004_gl_triangle_app.cpp │ ├── 004_gl_triangle_app.h │ ├── 005_gl_regular_polygons.cpp │ ├── 005_gl_regular_polygons.h │ ├── 006_gl_cube_app.cpp │ ├── 006_gl_cube_app.h │ ├── 007_gl_texture.cpp │ ├── 007_gl_texture.h │ ├── 008_gl_texture2.cpp │ ├── 008_gl_texture2.h │ ├── 009_gl_texture3.cpp │ ├── 009_gl_texture3.h │ ├── CMakeLists.txt │ ├── gl_app.h │ ├── glm │ │ ├── CMakeLists.txt │ │ ├── common.hpp │ │ ├── detail │ │ │ ├── _features.hpp │ │ │ ├── _fixes.hpp │ │ │ ├── _noise.hpp │ │ │ ├── _swizzle.hpp │ │ │ ├── _swizzle_func.hpp │ │ │ ├── _vectorize.hpp │ │ │ ├── compute_vector_relational.hpp │ │ │ ├── dummy.cpp │ │ │ ├── func_common.inl │ │ │ ├── func_common_simd.inl │ │ │ ├── func_exponential.inl │ │ │ ├── func_exponential_simd.inl │ │ │ ├── func_geometric.inl │ │ │ ├── func_geometric_simd.inl │ │ │ ├── func_integer.inl │ │ │ ├── func_integer_simd.inl │ │ │ ├── func_matrix.inl │ │ │ ├── func_matrix_simd.inl │ │ │ ├── func_packing.inl │ │ │ ├── func_packing_simd.inl │ │ │ ├── func_trigonometric.inl │ │ │ ├── func_trigonometric_simd.inl │ │ │ ├── func_vector_relational.inl │ │ │ ├── func_vector_relational_simd.inl │ │ │ ├── glm.cpp │ │ │ ├── qualifier.hpp │ │ │ ├── setup.hpp │ │ │ ├── type_float.hpp │ │ │ ├── type_gentype.hpp │ │ │ ├── type_gentype.inl │ │ │ ├── type_half.hpp │ │ │ ├── type_half.inl │ │ │ ├── type_int.hpp │ │ │ ├── type_mat.hpp │ │ │ ├── type_mat.inl │ │ │ ├── type_mat2x2.hpp │ │ │ ├── type_mat2x2.inl │ │ │ ├── type_mat2x3.hpp │ │ │ ├── type_mat2x3.inl │ │ │ ├── type_mat2x4.hpp │ │ │ ├── type_mat2x4.inl │ │ │ ├── type_mat3x2.hpp │ │ │ ├── type_mat3x2.inl │ │ │ ├── type_mat3x3.hpp │ │ │ ├── type_mat3x3.inl │ │ │ ├── type_mat3x4.hpp │ │ │ ├── type_mat3x4.inl │ │ │ ├── type_mat4x2.hpp │ │ │ ├── type_mat4x2.inl │ │ │ ├── type_mat4x3.hpp │ │ │ ├── type_mat4x3.inl │ │ │ ├── type_mat4x4.hpp │ │ │ ├── type_mat4x4.inl │ │ │ ├── type_mat4x4_simd.inl │ │ │ ├── type_vec.hpp │ │ │ ├── type_vec.inl │ │ │ ├── type_vec1.hpp │ │ │ ├── type_vec1.inl │ │ │ ├── type_vec2.hpp │ │ │ ├── type_vec2.inl │ │ │ ├── type_vec3.hpp │ │ │ ├── type_vec3.inl │ │ │ ├── type_vec4.hpp │ │ │ ├── type_vec4.inl │ │ │ └── type_vec4_simd.inl │ │ ├── exponential.hpp │ │ ├── ext.hpp │ │ ├── ext │ │ │ ├── vec1.hpp │ │ │ ├── vec1.inl │ │ │ ├── vector_relational.hpp │ │ │ └── vector_relational.inl │ │ ├── fwd.hpp │ │ ├── geometric.hpp │ │ ├── glm.hpp │ │ ├── gtc │ │ │ ├── bitfield.hpp │ │ │ ├── bitfield.inl │ │ │ ├── color_space.hpp │ │ │ ├── color_space.inl │ │ │ ├── constants.hpp │ │ │ ├── constants.inl │ │ │ ├── epsilon.hpp │ │ │ ├── epsilon.inl │ │ │ ├── integer.hpp │ │ │ ├── integer.inl │ │ │ ├── matrix_access.hpp │ │ │ ├── matrix_access.inl │ │ │ ├── matrix_integer.hpp │ │ │ ├── matrix_inverse.hpp │ │ │ ├── matrix_inverse.inl │ │ │ ├── matrix_transform.hpp │ │ │ ├── matrix_transform.inl │ │ │ ├── noise.hpp │ │ │ ├── noise.inl │ │ │ ├── packing.hpp │ │ │ ├── packing.inl │ │ │ ├── quaternion.hpp │ │ │ ├── quaternion.inl │ │ │ ├── quaternion_simd.inl │ │ │ ├── random.hpp │ │ │ ├── random.inl │ │ │ ├── reciprocal.hpp │ │ │ ├── reciprocal.inl │ │ │ ├── round.hpp │ │ │ ├── round.inl │ │ │ ├── type_aligned.hpp │ │ │ ├── type_precision.hpp │ │ │ ├── type_precision.inl │ │ │ ├── type_ptr.hpp │ │ │ ├── type_ptr.inl │ │ │ ├── ulp.hpp │ │ │ ├── ulp.inl │ │ │ ├── vec1.hpp │ │ │ └── vec1.inl │ │ ├── gtx │ │ │ ├── associated_min_max.hpp │ │ │ ├── associated_min_max.inl │ │ │ ├── bit.hpp │ │ │ ├── bit.inl │ │ │ ├── closest_point.hpp │ │ │ ├── closest_point.inl │ │ │ ├── color_encoding.hpp │ │ │ ├── color_encoding.inl │ │ │ ├── color_space.hpp │ │ │ ├── color_space.inl │ │ │ ├── color_space_YCoCg.hpp │ │ │ ├── color_space_YCoCg.inl │ │ │ ├── common.hpp │ │ │ ├── common.inl │ │ │ ├── compatibility.hpp │ │ │ ├── compatibility.inl │ │ │ ├── component_wise.hpp │ │ │ ├── component_wise.inl │ │ │ ├── dual_quaternion.hpp │ │ │ ├── dual_quaternion.inl │ │ │ ├── easing.hpp │ │ │ ├── easing.inl │ │ │ ├── euler_angles.hpp │ │ │ ├── euler_angles.inl │ │ │ ├── extend.hpp │ │ │ ├── extend.inl │ │ │ ├── extended_min_max.hpp │ │ │ ├── extended_min_max.inl │ │ │ ├── exterior_product.hpp │ │ │ ├── exterior_product.inl │ │ │ ├── fast_exponential.hpp │ │ │ ├── fast_exponential.inl │ │ │ ├── fast_square_root.hpp │ │ │ ├── fast_square_root.inl │ │ │ ├── fast_trigonometry.hpp │ │ │ ├── fast_trigonometry.inl │ │ │ ├── float_notmalize.inl │ │ │ ├── functions.hpp │ │ │ ├── functions.inl │ │ │ ├── gradient_paint.hpp │ │ │ ├── gradient_paint.inl │ │ │ ├── handed_coordinate_space.hpp │ │ │ ├── handed_coordinate_space.inl │ │ │ ├── hash.hpp │ │ │ ├── hash.inl │ │ │ ├── integer.hpp │ │ │ ├── integer.inl │ │ │ ├── intersect.hpp │ │ │ ├── intersect.inl │ │ │ ├── io.hpp │ │ │ ├── io.inl │ │ │ ├── log_base.hpp │ │ │ ├── log_base.inl │ │ │ ├── matrix_cross_product.hpp │ │ │ ├── matrix_cross_product.inl │ │ │ ├── matrix_decompose.hpp │ │ │ ├── matrix_decompose.inl │ │ │ ├── matrix_factorisation.hpp │ │ │ ├── matrix_factorisation.inl │ │ │ ├── matrix_interpolation.hpp │ │ │ ├── matrix_interpolation.inl │ │ │ ├── matrix_major_storage.hpp │ │ │ ├── matrix_major_storage.inl │ │ │ ├── matrix_operation.hpp │ │ │ ├── matrix_operation.inl │ │ │ ├── matrix_query.hpp │ │ │ ├── matrix_query.inl │ │ │ ├── matrix_transform_2d.hpp │ │ │ ├── matrix_transform_2d.inl │ │ │ ├── mixed_product.hpp │ │ │ ├── mixed_product.inl │ │ │ ├── norm.hpp │ │ │ ├── norm.inl │ │ │ ├── normal.hpp │ │ │ ├── normal.inl │ │ │ ├── normalize_dot.hpp │ │ │ ├── normalize_dot.inl │ │ │ ├── number_precision.hpp │ │ │ ├── number_precision.inl │ │ │ ├── optimum_pow.hpp │ │ │ ├── optimum_pow.inl │ │ │ ├── orthonormalize.hpp │ │ │ ├── orthonormalize.inl │ │ │ ├── perpendicular.hpp │ │ │ ├── perpendicular.inl │ │ │ ├── polar_coordinates.hpp │ │ │ ├── polar_coordinates.inl │ │ │ ├── projection.hpp │ │ │ ├── projection.inl │ │ │ ├── quaternion.hpp │ │ │ ├── quaternion.inl │ │ │ ├── range.hpp │ │ │ ├── raw_data.hpp │ │ │ ├── raw_data.inl │ │ │ ├── rotate_normalized_axis.hpp │ │ │ ├── rotate_normalized_axis.inl │ │ │ ├── rotate_vector.hpp │ │ │ ├── rotate_vector.inl │ │ │ ├── scalar_multiplication.hpp │ │ │ ├── scalar_relational.hpp │ │ │ ├── scalar_relational.inl │ │ │ ├── spline.hpp │ │ │ ├── spline.inl │ │ │ ├── std_based_type.hpp │ │ │ ├── std_based_type.inl │ │ │ ├── string_cast.hpp │ │ │ ├── string_cast.inl │ │ │ ├── texture.hpp │ │ │ ├── texture.inl │ │ │ ├── transform.hpp │ │ │ ├── transform.inl │ │ │ ├── transform2.hpp │ │ │ ├── transform2.inl │ │ │ ├── type_aligned.hpp │ │ │ ├── type_aligned.inl │ │ │ ├── type_trait.hpp │ │ │ ├── type_trait.inl │ │ │ ├── vec_swizzle.hpp │ │ │ ├── vector_angle.hpp │ │ │ ├── vector_angle.inl │ │ │ ├── vector_query.hpp │ │ │ ├── vector_query.inl │ │ │ ├── wrap.hpp │ │ │ └── wrap.inl │ │ ├── integer.hpp │ │ ├── mat2x2.hpp │ │ ├── mat2x3.hpp │ │ ├── mat2x4.hpp │ │ ├── mat3x2.hpp │ │ ├── mat3x3.hpp │ │ ├── mat3x4.hpp │ │ ├── mat4x2.hpp │ │ ├── mat4x3.hpp │ │ ├── mat4x4.hpp │ │ ├── matrix.hpp │ │ ├── packing.hpp │ │ ├── simd │ │ │ ├── common.h │ │ │ ├── exponential.h │ │ │ ├── geometric.h │ │ │ ├── integer.h │ │ │ ├── matrix.h │ │ │ ├── packing.h │ │ │ ├── platform.h │ │ │ ├── trigonometric.h │ │ │ └── vector_relational.h │ │ ├── trigonometric.hpp │ │ ├── vec2.hpp │ │ ├── vec3.hpp │ │ ├── vec4.hpp │ │ └── vector_relational.hpp │ ├── include │ │ └── assimp │ │ │ ├── BaseImporter.h │ │ │ ├── Bitmap.h │ │ │ ├── BlobIOSystem.h │ │ │ ├── ByteSwapper.h │ │ │ ├── Compiler │ │ │ ├── poppack1.h │ │ │ ├── pstdint.h │ │ │ └── pushpack1.h │ │ │ ├── CreateAnimMesh.h │ │ │ ├── DefaultIOStream.h │ │ │ ├── DefaultIOSystem.h │ │ │ ├── DefaultLogger.hpp │ │ │ ├── Defines.h │ │ │ ├── Exceptional.h │ │ │ ├── Exporter.hpp │ │ │ ├── GenericProperty.h │ │ │ ├── Hash.h │ │ │ ├── IOStream.hpp │ │ │ ├── IOStreamBuffer.h │ │ │ ├── IOSystem.hpp │ │ │ ├── Importer.hpp │ │ │ ├── LineSplitter.h │ │ │ ├── LogAux.h │ │ │ ├── LogStream.hpp │ │ │ ├── Logger.hpp │ │ │ ├── Macros.h │ │ │ ├── MathFunctions.h │ │ │ ├── MemoryIOWrapper.h │ │ │ ├── NullLogger.hpp │ │ │ ├── ParsingUtils.h │ │ │ ├── Profiler.h │ │ │ ├── ProgressHandler.hpp │ │ │ ├── RemoveComments.h │ │ │ ├── SGSpatialSort.h │ │ │ ├── SceneCombiner.h │ │ │ ├── SkeletonMeshBuilder.h │ │ │ ├── SmoothingGroups.h │ │ │ ├── SmoothingGroups.inl │ │ │ ├── SpatialSort.h │ │ │ ├── StandardShapes.h │ │ │ ├── StreamReader.h │ │ │ ├── StreamWriter.h │ │ │ ├── StringComparison.h │ │ │ ├── StringUtils.h │ │ │ ├── Subdivision.h │ │ │ ├── TinyFormatter.h │ │ │ ├── Vertex.h │ │ │ ├── XMLTools.h │ │ │ ├── ai_assert.h │ │ │ ├── anim.h │ │ │ ├── camera.h │ │ │ ├── cexport.h │ │ │ ├── cfileio.h │ │ │ ├── cimport.h │ │ │ ├── color4.h │ │ │ ├── color4.inl │ │ │ ├── config.h.in │ │ │ ├── defs.h │ │ │ ├── fast_atof.h │ │ │ ├── importerdesc.h │ │ │ ├── irrXMLWrapper.h │ │ │ ├── light.h │ │ │ ├── material.h │ │ │ ├── material.inl │ │ │ ├── matrix3x3.h │ │ │ ├── matrix3x3.inl │ │ │ ├── matrix4x4.h │ │ │ ├── matrix4x4.inl │ │ │ ├── mesh.h │ │ │ ├── metadata.h │ │ │ ├── pbrmaterial.h │ │ │ ├── port │ │ │ └── AndroidJNI │ │ │ │ └── AndroidJNIIOSystem.h │ │ │ ├── postprocess.h │ │ │ ├── qnan.h │ │ │ ├── quaternion.h │ │ │ ├── quaternion.inl │ │ │ ├── scene.h │ │ │ ├── texture.h │ │ │ ├── types.h │ │ │ ├── vector2.h │ │ │ ├── vector2.inl │ │ │ ├── vector3.h │ │ │ ├── vector3.inl │ │ │ └── version.h │ ├── main.cpp │ ├── shaders │ │ ├── 0010_f.glsl │ │ ├── 0010_v.glsl │ │ ├── 0011_f.glsl │ │ ├── 0011_v.glsl │ │ ├── 0012_f.glsl │ │ ├── 0012_v.glsl │ │ ├── 0013_f.glsl │ │ ├── 0013_v.glsl │ │ ├── 0014_cube_f.glsl │ │ ├── 0014_cube_v.glsl │ │ ├── 0014_light_f.glsl │ │ ├── 0014_light_v.glsl │ │ ├── 0015_cube_f.glsl │ │ ├── 0015_cube_v.glsl │ │ ├── 0015_light_f.glsl │ │ ├── 0015_light_v.glsl │ │ ├── 0016_cube_f.glsl │ │ ├── 0016_cube_v.glsl │ │ ├── 0016_light_f.glsl │ │ ├── 0016_light_v.glsl │ │ ├── 0017_cube_f.glsl │ │ ├── 0017_cube_v.glsl │ │ ├── 0017_light_f.glsl │ │ ├── 0017_light_v.glsl │ │ ├── 0018_cube_f.glsl │ │ ├── 0018_cube_v.glsl │ │ ├── 0018_light_f.glsl │ │ ├── 0018_light_v.glsl │ │ ├── 0019_cube_f.glsl │ │ ├── 0019_cube_v.glsl │ │ ├── 0019_light_f.glsl │ │ ├── 0019_light_v.glsl │ │ ├── 0020_cube_f.glsl │ │ ├── 0020_cube_v.glsl │ │ ├── 0020_light_f.glsl │ │ ├── 0020_light_v.glsl │ │ ├── 0021_cube_f.glsl │ │ ├── 0021_cube_v.glsl │ │ ├── 0021_light_f.glsl │ │ ├── 0021_light_v.glsl │ │ ├── 0022_cube_f.glsl │ │ ├── 0022_cube_v.glsl │ │ ├── 0022_light_f.glsl │ │ ├── 0022_light_v.glsl │ │ ├── 002_f.glsl │ │ ├── 002_v.glsl │ │ ├── 003_f.glsl │ │ ├── 003_v.glsl │ │ ├── 004_f.glsl │ │ ├── 004_v.glsl │ │ ├── 005_f.glsl │ │ ├── 005_v.glsl │ │ ├── 006_f.glsl │ │ ├── 006_v.glsl │ │ ├── 007_f.glsl │ │ ├── 007_v.glsl │ │ ├── 008_f.glsl │ │ ├── 008_v.glsl │ │ ├── 009_f.glsl │ │ ├── 009_v.glsl │ │ └── include │ │ │ ├── 0010_f.glsl.in │ │ │ ├── 0010_v.glsl.in │ │ │ ├── 0011_f.glsl.in │ │ │ ├── 0011_v.glsl.in │ │ │ ├── 0012_f.glsl.in │ │ │ ├── 0012_v.glsl.in │ │ │ ├── 0013_f.glsl.in │ │ │ ├── 0013_v.glsl.in │ │ │ ├── 0014_cube_f.glsl.in │ │ │ ├── 0014_cube_v.glsl.in │ │ │ ├── 0014_light_f.glsl.in │ │ │ ├── 0014_light_v.glsl.in │ │ │ ├── 0015_cube_f.glsl.in │ │ │ ├── 0015_cube_v.glsl.in │ │ │ ├── 0015_light_f.glsl.in │ │ │ ├── 0015_light_v.glsl.in │ │ │ ├── 0016_cube_f.glsl.in │ │ │ ├── 0016_cube_v.glsl.in │ │ │ ├── 0016_light_f.glsl.in │ │ │ ├── 0016_light_v.glsl.in │ │ │ ├── 0017_cube_f.glsl.in │ │ │ ├── 0017_cube_v.glsl.in │ │ │ ├── 0017_light_f.glsl.in │ │ │ ├── 0017_light_v.glsl.in │ │ │ ├── 0018_cube_f.glsl.in │ │ │ ├── 0018_cube_v.glsl.in │ │ │ ├── 0018_light_f.glsl.in │ │ │ ├── 0018_light_v.glsl.in │ │ │ ├── 0019_cube_f.glsl.in │ │ │ ├── 0019_cube_v.glsl.in │ │ │ ├── 0019_light_f.glsl.in │ │ │ ├── 0019_light_v.glsl.in │ │ │ ├── 0020_cube_f.glsl.in │ │ │ ├── 0020_cube_v.glsl.in │ │ │ ├── 0020_light_f.glsl.in │ │ │ ├── 0020_light_v.glsl.in │ │ │ ├── 0021_cube_f.glsl.in │ │ │ ├── 0021_cube_v.glsl.in │ │ │ ├── 0021_light_f.glsl.in │ │ │ ├── 0021_light_v.glsl.in │ │ │ ├── 0022_cube_f.glsl.in │ │ │ ├── 0022_cube_v.glsl.in │ │ │ ├── 0022_light_f.glsl.in │ │ │ ├── 0022_light_v.glsl.in │ │ │ ├── 002_f.glsl.in │ │ │ ├── 002_v.glsl.in │ │ │ ├── 003_f.glsl.in │ │ │ ├── 003_v.glsl.in │ │ │ ├── 004_f.glsl.in │ │ │ ├── 004_v.glsl.in │ │ │ ├── 005_f.glsl.in │ │ │ ├── 005_v.glsl.in │ │ │ ├── 006_f.glsl.in │ │ │ ├── 006_v.glsl.in │ │ │ ├── 007_f.glsl.in │ │ │ ├── 007_v.glsl.in │ │ │ ├── 008_f.glsl.in │ │ │ ├── 008_v.glsl.in │ │ │ ├── 009_f.glsl.in │ │ │ └── 009_v.glsl.in │ ├── static_libs │ │ └── libassimp.so │ ├── stb_image.h │ ├── utils.cpp │ └── utils.h │ └── res │ ├── mipmap-hdpi │ └── ic_launcher.png │ ├── mipmap-mdpi │ └── ic_launcher.png │ ├── mipmap-xhdpi │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ └── ic_launcher.png │ └── values │ └── strings.xml ├── docs ├── GLM-Introduction.md ├── LightModels.md ├── MVP.md ├── Multiply-in-Shader.md └── glVertexAttribPointer-and-VBO.md ├── file2str.py ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── installDebug.bat ├── logcat.bat ├── res_files └── files │ ├── cat.jpg │ ├── cat2.jpg │ ├── container.jpg │ ├── container_specular.jpg │ ├── lake.jpg │ └── smile.jpg ├── screenshots ├── 0010_transform.png ├── 0011_transform2.gif ├── 0012_coordinate.gif ├── 0013_camera.gif ├── 0014_light.gif ├── 0015_diffuse.gif ├── 0016_specular.gif ├── 0017_material.gif ├── 0018_diffusemap.gif ├── 0019_specularmap.gif ├── 001_color.png ├── 0020_light_directional.gif ├── 0021_light_point.gif ├── 0022_light_spot.gif ├── 002_point.png ├── 003_line_loop.png ├── 003_line_strip.png ├── 003_lines.png ├── 004_triangle_fan.png ├── 004_triangle_strip.png ├── 004_triangles.png ├── 005_regular_polygons.png ├── 006_cube.png ├── 007_texture.png ├── 008_texture2.png ├── 009_texture3.gif └── 009_texture3.mp4 └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/.gitignore -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/ReadMe.md -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/cpp/0010_gl_transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/0010_gl_transform.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/0010_gl_transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/0010_gl_transform.h -------------------------------------------------------------------------------- /app/src/main/cpp/0011_gl_transform2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/0011_gl_transform2.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/0011_gl_transform2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/0011_gl_transform2.h -------------------------------------------------------------------------------- /app/src/main/cpp/0012_gl_coordinate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/0012_gl_coordinate.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/0012_gl_coordinate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/0012_gl_coordinate.h -------------------------------------------------------------------------------- /app/src/main/cpp/0013_gl_camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/0013_gl_camera.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/0013_gl_camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/0013_gl_camera.h -------------------------------------------------------------------------------- /app/src/main/cpp/0014_gl_light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/0014_gl_light.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/0014_gl_light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/0014_gl_light.h -------------------------------------------------------------------------------- /app/src/main/cpp/0015_gl_light_diffuse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/0015_gl_light_diffuse.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/0015_gl_light_diffuse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/0015_gl_light_diffuse.h -------------------------------------------------------------------------------- /app/src/main/cpp/0016_gl_light_specular.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/0016_gl_light_specular.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/0016_gl_light_specular.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/0016_gl_light_specular.h -------------------------------------------------------------------------------- /app/src/main/cpp/0017_gl_light_material.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/0017_gl_light_material.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/0017_gl_light_material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/0017_gl_light_material.h -------------------------------------------------------------------------------- /app/src/main/cpp/0018_gl_light_maps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/0018_gl_light_maps.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/0018_gl_light_maps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/0018_gl_light_maps.h -------------------------------------------------------------------------------- /app/src/main/cpp/0019_gl_light_maps_specular.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/0019_gl_light_maps_specular.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/0019_gl_light_maps_specular.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/0019_gl_light_maps_specular.h -------------------------------------------------------------------------------- /app/src/main/cpp/001_gl_color_app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/001_gl_color_app.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/001_gl_color_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/001_gl_color_app.h -------------------------------------------------------------------------------- /app/src/main/cpp/0020_gl_light_directional.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/0020_gl_light_directional.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/0020_gl_light_directional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/0020_gl_light_directional.h -------------------------------------------------------------------------------- /app/src/main/cpp/0021_gl_light_point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/0021_gl_light_point.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/0021_gl_light_point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/0021_gl_light_point.h -------------------------------------------------------------------------------- /app/src/main/cpp/0022_gl_light_spot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/0022_gl_light_spot.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/0022_gl_light_spot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/0022_gl_light_spot.h -------------------------------------------------------------------------------- /app/src/main/cpp/002_gl_point_app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/002_gl_point_app.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/002_gl_point_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/002_gl_point_app.h -------------------------------------------------------------------------------- /app/src/main/cpp/003_gl_lines_app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/003_gl_lines_app.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/003_gl_lines_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/003_gl_lines_app.h -------------------------------------------------------------------------------- /app/src/main/cpp/004_gl_triangle_app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/004_gl_triangle_app.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/004_gl_triangle_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/004_gl_triangle_app.h -------------------------------------------------------------------------------- /app/src/main/cpp/005_gl_regular_polygons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/005_gl_regular_polygons.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/005_gl_regular_polygons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/005_gl_regular_polygons.h -------------------------------------------------------------------------------- /app/src/main/cpp/006_gl_cube_app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/006_gl_cube_app.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/006_gl_cube_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/006_gl_cube_app.h -------------------------------------------------------------------------------- /app/src/main/cpp/007_gl_texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/007_gl_texture.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/007_gl_texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/007_gl_texture.h -------------------------------------------------------------------------------- /app/src/main/cpp/008_gl_texture2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/008_gl_texture2.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/008_gl_texture2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/008_gl_texture2.h -------------------------------------------------------------------------------- /app/src/main/cpp/009_gl_texture3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/009_gl_texture3.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/009_gl_texture3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/009_gl_texture3.h -------------------------------------------------------------------------------- /app/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /app/src/main/cpp/gl_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/gl_app.h -------------------------------------------------------------------------------- /app/src/main/cpp/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/CMakeLists.txt -------------------------------------------------------------------------------- /app/src/main/cpp/glm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/common.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/_features.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/_fixes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/_fixes.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/_noise.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/_swizzle.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/_swizzle_func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/_swizzle_func.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/_vectorize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/_vectorize.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/compute_vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/compute_vector_relational.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/dummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/dummy.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/func_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/func_common.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/func_common_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/func_common_simd.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/func_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/func_exponential.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/func_exponential_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/func_exponential_simd.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/func_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/func_geometric.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/func_geometric_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/func_geometric_simd.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/func_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/func_integer.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/func_integer_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/func_integer_simd.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/func_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/func_matrix.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/func_matrix_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/func_matrix_simd.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/func_packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/func_packing.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/func_packing_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/func_packing_simd.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/func_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/func_trigonometric.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/func_trigonometric_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/func_vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/func_vector_relational.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/func_vector_relational_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/func_vector_relational_simd.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/glm.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/qualifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/qualifier.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/setup.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/type_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/type_float.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/type_gentype.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/type_gentype.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/type_gentype.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/type_gentype.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/type_half.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/type_half.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/type_half.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/type_half.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/type_int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/type_int.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/type_mat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/type_mat.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/type_mat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/type_mat.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/type_mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/type_mat2x2.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/type_mat2x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/type_mat2x2.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/type_mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/type_mat2x3.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/type_mat2x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/type_mat2x3.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/type_mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/type_mat2x4.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/type_mat2x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/type_mat2x4.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/type_mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/type_mat3x2.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/type_mat3x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/type_mat3x2.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/type_mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/type_mat3x3.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/type_mat3x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/type_mat3x3.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/type_mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/type_mat3x4.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/type_mat3x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/type_mat3x4.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/type_mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/type_mat4x2.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/type_mat4x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/type_mat4x2.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/type_mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/type_mat4x3.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/type_mat4x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/type_mat4x3.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/type_mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/type_mat4x4.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/type_mat4x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/type_mat4x4.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/type_mat4x4_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/type_mat4x4_simd.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/type_vec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/type_vec.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/type_vec.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/type_vec.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/type_vec1.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/type_vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/type_vec1.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/type_vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/type_vec2.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/type_vec2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/type_vec2.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/type_vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/type_vec3.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/type_vec3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/type_vec3.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/type_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/type_vec4.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/type_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/type_vec4.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/detail/type_vec4_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/detail/type_vec4_simd.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/exponential.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/ext.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/ext/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/ext/vec1.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/ext/vec1.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/cpp/glm/ext/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/ext/vector_relational.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/ext/vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/ext/vector_relational.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/fwd.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/geometric.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/glm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/glm.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtc/bitfield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtc/bitfield.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtc/bitfield.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtc/bitfield.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtc/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtc/color_space.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtc/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtc/color_space.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtc/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtc/constants.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtc/constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtc/constants.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtc/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtc/epsilon.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtc/epsilon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtc/epsilon.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtc/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtc/integer.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtc/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtc/integer.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtc/matrix_access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtc/matrix_access.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtc/matrix_access.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtc/matrix_access.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtc/matrix_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtc/matrix_integer.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtc/matrix_inverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtc/matrix_inverse.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtc/matrix_inverse.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtc/matrix_inverse.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtc/matrix_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtc/matrix_transform.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtc/matrix_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtc/matrix_transform.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtc/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtc/noise.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtc/noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtc/noise.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtc/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtc/packing.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtc/packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtc/packing.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtc/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtc/quaternion.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtc/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtc/quaternion.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtc/quaternion_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtc/quaternion_simd.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtc/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtc/random.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtc/random.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtc/random.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtc/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtc/reciprocal.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtc/reciprocal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtc/reciprocal.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtc/round.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtc/round.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtc/round.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtc/round.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtc/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtc/type_aligned.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtc/type_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtc/type_precision.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtc/type_precision.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtc/type_precision.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtc/type_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtc/type_ptr.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtc/type_ptr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtc/type_ptr.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtc/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtc/ulp.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtc/ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtc/ulp.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtc/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtc/vec1.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtc/vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtc/vec1.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/associated_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/associated_min_max.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/associated_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/associated_min_max.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/bit.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/bit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/bit.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/closest_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/closest_point.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/closest_point.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/closest_point.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/color_encoding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/color_encoding.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/color_encoding.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/color_encoding.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/color_space.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/color_space.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/color_space_YCoCg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/color_space_YCoCg.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/color_space_YCoCg.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/color_space_YCoCg.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/common.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/common.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/compatibility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/compatibility.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/compatibility.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/compatibility.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/component_wise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/component_wise.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/component_wise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/component_wise.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/dual_quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/dual_quaternion.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/dual_quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/dual_quaternion.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/easing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/easing.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/easing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/easing.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/euler_angles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/euler_angles.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/euler_angles.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/euler_angles.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/extend.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/extend.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/extend.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/extended_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/extended_min_max.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/extended_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/extended_min_max.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/exterior_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/exterior_product.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/exterior_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/exterior_product.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/fast_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/fast_exponential.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/fast_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/fast_exponential.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/fast_square_root.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/fast_square_root.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/fast_square_root.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/fast_square_root.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/fast_trigonometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/fast_trigonometry.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/fast_trigonometry.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/fast_trigonometry.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/float_notmalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/float_notmalize.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/functions.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/functions.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/functions.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/gradient_paint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/gradient_paint.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/gradient_paint.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/gradient_paint.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/handed_coordinate_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/handed_coordinate_space.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/handed_coordinate_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/handed_coordinate_space.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/hash.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/hash.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/hash.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/integer.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/integer.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/intersect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/intersect.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/intersect.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/intersect.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/io.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/io.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/log_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/log_base.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/log_base.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/log_base.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/matrix_cross_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/matrix_cross_product.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/matrix_cross_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/matrix_cross_product.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/matrix_decompose.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/matrix_decompose.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/matrix_decompose.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/matrix_decompose.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/matrix_factorisation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/matrix_factorisation.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/matrix_factorisation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/matrix_factorisation.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/matrix_interpolation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/matrix_interpolation.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/matrix_interpolation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/matrix_interpolation.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/matrix_major_storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/matrix_major_storage.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/matrix_major_storage.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/matrix_major_storage.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/matrix_operation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/matrix_operation.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/matrix_operation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/matrix_operation.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/matrix_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/matrix_query.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/matrix_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/matrix_query.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/matrix_transform_2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/matrix_transform_2d.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/matrix_transform_2d.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/matrix_transform_2d.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/mixed_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/mixed_product.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/mixed_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/mixed_product.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/norm.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/norm.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/norm.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/normal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/normal.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/normal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/normal.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/normalize_dot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/normalize_dot.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/normalize_dot.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/normalize_dot.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/number_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/number_precision.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/number_precision.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/number_precision.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/optimum_pow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/optimum_pow.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/optimum_pow.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/optimum_pow.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/orthonormalize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/orthonormalize.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/orthonormalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/orthonormalize.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/perpendicular.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/perpendicular.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/perpendicular.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/perpendicular.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/polar_coordinates.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/polar_coordinates.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/polar_coordinates.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/polar_coordinates.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/projection.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/projection.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/quaternion.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/quaternion.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/range.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/raw_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/raw_data.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/raw_data.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/rotate_normalized_axis.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/rotate_normalized_axis.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/rotate_normalized_axis.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/rotate_normalized_axis.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/rotate_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/rotate_vector.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/rotate_vector.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/rotate_vector.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/scalar_multiplication.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/scalar_multiplication.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/scalar_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/scalar_relational.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/scalar_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/scalar_relational.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/spline.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/spline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/spline.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/std_based_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/std_based_type.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/std_based_type.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/std_based_type.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/string_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/string_cast.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/string_cast.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/string_cast.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/texture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/texture.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/texture.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/texture.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/transform.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/transform.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/transform2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/transform2.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/transform2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/transform2.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/type_aligned.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/type_aligned.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/type_aligned.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/type_trait.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/type_trait.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/type_trait.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/type_trait.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/vec_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/vec_swizzle.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/vector_angle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/vector_angle.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/vector_angle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/vector_angle.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/vector_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/vector_query.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/vector_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/vector_query.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/wrap.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/gtx/wrap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/gtx/wrap.inl -------------------------------------------------------------------------------- /app/src/main/cpp/glm/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/integer.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/mat2x2.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/mat2x3.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/mat2x4.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/mat3x2.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/mat3x3.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/mat3x4.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/mat4x2.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/mat4x3.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/mat4x4.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/matrix.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/packing.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/simd/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/simd/common.h -------------------------------------------------------------------------------- /app/src/main/cpp/glm/simd/exponential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/simd/exponential.h -------------------------------------------------------------------------------- /app/src/main/cpp/glm/simd/geometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/simd/geometric.h -------------------------------------------------------------------------------- /app/src/main/cpp/glm/simd/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/simd/integer.h -------------------------------------------------------------------------------- /app/src/main/cpp/glm/simd/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/simd/matrix.h -------------------------------------------------------------------------------- /app/src/main/cpp/glm/simd/packing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/simd/packing.h -------------------------------------------------------------------------------- /app/src/main/cpp/glm/simd/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/simd/platform.h -------------------------------------------------------------------------------- /app/src/main/cpp/glm/simd/trigonometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/simd/trigonometric.h -------------------------------------------------------------------------------- /app/src/main/cpp/glm/simd/vector_relational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/simd/vector_relational.h -------------------------------------------------------------------------------- /app/src/main/cpp/glm/trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/trigonometric.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/vec2.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/vec3.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/vec4.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/glm/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/glm/vector_relational.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/BaseImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/BaseImporter.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/Bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/Bitmap.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/BlobIOSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/BlobIOSystem.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/ByteSwapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/ByteSwapper.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/Compiler/poppack1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/Compiler/poppack1.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/Compiler/pstdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/Compiler/pstdint.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/Compiler/pushpack1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/Compiler/pushpack1.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/CreateAnimMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/CreateAnimMesh.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/DefaultIOStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/DefaultIOStream.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/DefaultIOSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/DefaultIOSystem.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/DefaultLogger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/DefaultLogger.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/Defines.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/Exceptional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/Exceptional.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/Exporter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/Exporter.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/GenericProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/GenericProperty.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/Hash.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/IOStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/IOStream.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/IOStreamBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/IOStreamBuffer.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/IOSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/IOSystem.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/Importer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/Importer.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/LineSplitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/LineSplitter.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/LogAux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/LogAux.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/LogStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/LogStream.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/Logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/Logger.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/Macros.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/MathFunctions.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/MemoryIOWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/MemoryIOWrapper.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/NullLogger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/NullLogger.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/ParsingUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/ParsingUtils.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/Profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/Profiler.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/ProgressHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/ProgressHandler.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/RemoveComments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/RemoveComments.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/SGSpatialSort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/SGSpatialSort.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/SceneCombiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/SceneCombiner.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/SkeletonMeshBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/SkeletonMeshBuilder.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/SmoothingGroups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/SmoothingGroups.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/SmoothingGroups.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/SmoothingGroups.inl -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/SpatialSort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/SpatialSort.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/StandardShapes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/StandardShapes.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/StreamReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/StreamReader.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/StreamWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/StreamWriter.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/StringComparison.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/StringComparison.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/StringUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/StringUtils.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/Subdivision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/Subdivision.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/TinyFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/TinyFormatter.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/Vertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/Vertex.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/XMLTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/XMLTools.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/ai_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/ai_assert.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/anim.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/camera.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/cexport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/cexport.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/cfileio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/cfileio.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/cimport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/cimport.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/color4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/color4.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/color4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/color4.inl -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/config.h.in -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/defs.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/fast_atof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/fast_atof.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/importerdesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/importerdesc.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/irrXMLWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/irrXMLWrapper.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/light.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/material.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/material.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/material.inl -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/matrix3x3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/matrix3x3.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/matrix3x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/matrix3x3.inl -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/matrix4x4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/matrix4x4.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/matrix4x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/matrix4x4.inl -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/mesh.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/metadata.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/pbrmaterial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/pbrmaterial.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/port/AndroidJNI/AndroidJNIIOSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/port/AndroidJNI/AndroidJNIIOSystem.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/postprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/postprocess.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/qnan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/qnan.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/quaternion.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/quaternion.inl -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/scene.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/texture.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/types.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/vector2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/vector2.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/vector2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/vector2.inl -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/vector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/vector3.h -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/vector3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/vector3.inl -------------------------------------------------------------------------------- /app/src/main/cpp/include/assimp/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/include/assimp/version.h -------------------------------------------------------------------------------- /app/src/main/cpp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/main.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/0010_f.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/0010_f.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/0010_v.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/0010_v.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/0011_f.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/0011_f.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/0011_v.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/0011_v.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/0012_f.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/0012_f.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/0012_v.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/0012_v.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/0013_f.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/0013_f.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/0013_v.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/0013_v.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/0014_cube_f.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/0014_cube_f.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/0014_cube_v.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/0014_cube_v.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/0014_light_f.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/0014_light_f.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/0014_light_v.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/0014_light_v.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/0015_cube_f.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/0015_cube_f.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/0015_cube_v.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/0015_cube_v.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/0015_light_f.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/0015_light_f.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/0015_light_v.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/0015_light_v.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/0016_cube_f.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/0016_cube_f.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/0016_cube_v.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/0016_cube_v.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/0016_light_f.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/0016_light_f.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/0016_light_v.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/0016_light_v.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/0017_cube_f.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/0017_cube_f.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/0017_cube_v.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/0017_cube_v.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/0017_light_f.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/0017_light_f.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/0017_light_v.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/0017_light_v.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/0018_cube_f.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/0018_cube_f.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/0018_cube_v.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/0018_cube_v.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/0018_light_f.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/0018_light_f.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/0018_light_v.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/0018_light_v.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/0019_cube_f.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/0019_cube_f.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/0019_cube_v.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/0019_cube_v.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/0019_light_f.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/0019_light_f.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/0019_light_v.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/0019_light_v.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/0020_cube_f.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/0020_cube_f.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/0020_cube_v.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/0020_cube_v.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/0020_light_f.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/0020_light_f.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/0020_light_v.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/0020_light_v.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/0021_cube_f.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/0021_cube_f.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/0021_cube_v.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/0021_cube_v.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/0021_light_f.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/0021_light_f.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/0021_light_v.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/0021_light_v.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/0022_cube_f.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/0022_cube_f.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/0022_cube_v.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/0022_cube_v.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/0022_light_f.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/0022_light_f.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/0022_light_v.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/0022_light_v.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/002_f.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/002_f.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/002_v.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/002_v.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/003_f.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/003_f.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/003_v.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/003_v.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/004_f.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/004_f.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/004_v.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/004_v.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/005_f.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/005_f.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/005_v.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/005_v.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/006_f.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/006_f.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/006_v.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/006_v.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/007_f.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/007_f.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/007_v.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/007_v.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/008_f.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/008_f.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/008_v.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/008_v.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/009_f.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/009_f.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/009_v.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/009_v.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/0010_f.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/0010_f.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/0010_v.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/0010_v.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/0011_f.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/0011_f.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/0011_v.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/0011_v.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/0012_f.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/0012_f.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/0012_v.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/0012_v.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/0013_f.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/0013_f.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/0013_v.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/0013_v.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/0014_cube_f.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/0014_cube_f.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/0014_cube_v.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/0014_cube_v.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/0014_light_f.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/0014_light_f.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/0014_light_v.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/0014_light_v.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/0015_cube_f.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/0015_cube_f.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/0015_cube_v.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/0015_cube_v.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/0015_light_f.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/0015_light_f.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/0015_light_v.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/0015_light_v.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/0016_cube_f.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/0016_cube_f.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/0016_cube_v.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/0016_cube_v.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/0016_light_f.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/0016_light_f.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/0016_light_v.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/0016_light_v.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/0017_cube_f.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/0017_cube_f.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/0017_cube_v.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/0017_cube_v.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/0017_light_f.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/0017_light_f.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/0017_light_v.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/0017_light_v.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/0018_cube_f.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/0018_cube_f.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/0018_cube_v.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/0018_cube_v.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/0018_light_f.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/0018_light_f.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/0018_light_v.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/0018_light_v.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/0019_cube_f.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/0019_cube_f.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/0019_cube_v.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/0019_cube_v.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/0019_light_f.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/0019_light_f.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/0019_light_v.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/0019_light_v.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/0020_cube_f.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/0020_cube_f.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/0020_cube_v.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/0020_cube_v.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/0020_light_f.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/0020_light_f.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/0020_light_v.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/0020_light_v.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/0021_cube_f.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/0021_cube_f.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/0021_cube_v.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/0021_cube_v.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/0021_light_f.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/0021_light_f.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/0021_light_v.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/0021_light_v.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/0022_cube_f.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/0022_cube_f.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/0022_cube_v.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/0022_cube_v.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/0022_light_f.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/0022_light_f.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/0022_light_v.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/0022_light_v.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/002_f.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/002_f.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/002_v.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/002_v.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/003_f.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/003_f.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/003_v.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/003_v.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/004_f.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/004_f.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/004_v.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/004_v.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/005_f.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/005_f.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/005_v.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/005_v.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/006_f.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/006_f.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/006_v.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/006_v.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/007_f.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/007_f.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/007_v.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/007_v.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/008_f.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/008_f.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/008_v.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/008_v.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/009_f.glsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/shaders/include/009_f.glsl.in -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/include/009_v.glsl.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/cpp/static_libs/libassimp.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/static_libs/libassimp.so -------------------------------------------------------------------------------- /app/src/main/cpp/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/stb_image.h -------------------------------------------------------------------------------- /app/src/main/cpp/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/utils.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/cpp/utils.h -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /docs/GLM-Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/docs/GLM-Introduction.md -------------------------------------------------------------------------------- /docs/LightModels.md: -------------------------------------------------------------------------------- 1 | ## 光照模型 2 | -------------------------------------------------------------------------------- /docs/MVP.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/Multiply-in-Shader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/docs/Multiply-in-Shader.md -------------------------------------------------------------------------------- /docs/glVertexAttribPointer-and-VBO.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /file2str.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/file2str.py -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/gradlew.bat -------------------------------------------------------------------------------- /installDebug.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/installDebug.bat -------------------------------------------------------------------------------- /logcat.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/logcat.bat -------------------------------------------------------------------------------- /res_files/files/cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/res_files/files/cat.jpg -------------------------------------------------------------------------------- /res_files/files/cat2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/res_files/files/cat2.jpg -------------------------------------------------------------------------------- /res_files/files/container.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/res_files/files/container.jpg -------------------------------------------------------------------------------- /res_files/files/container_specular.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/res_files/files/container_specular.jpg -------------------------------------------------------------------------------- /res_files/files/lake.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/res_files/files/lake.jpg -------------------------------------------------------------------------------- /res_files/files/smile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/res_files/files/smile.jpg -------------------------------------------------------------------------------- /screenshots/0010_transform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/screenshots/0010_transform.png -------------------------------------------------------------------------------- /screenshots/0011_transform2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/screenshots/0011_transform2.gif -------------------------------------------------------------------------------- /screenshots/0012_coordinate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/screenshots/0012_coordinate.gif -------------------------------------------------------------------------------- /screenshots/0013_camera.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/screenshots/0013_camera.gif -------------------------------------------------------------------------------- /screenshots/0014_light.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/screenshots/0014_light.gif -------------------------------------------------------------------------------- /screenshots/0015_diffuse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/screenshots/0015_diffuse.gif -------------------------------------------------------------------------------- /screenshots/0016_specular.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/screenshots/0016_specular.gif -------------------------------------------------------------------------------- /screenshots/0017_material.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/screenshots/0017_material.gif -------------------------------------------------------------------------------- /screenshots/0018_diffusemap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/screenshots/0018_diffusemap.gif -------------------------------------------------------------------------------- /screenshots/0019_specularmap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/screenshots/0019_specularmap.gif -------------------------------------------------------------------------------- /screenshots/001_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/screenshots/001_color.png -------------------------------------------------------------------------------- /screenshots/0020_light_directional.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/screenshots/0020_light_directional.gif -------------------------------------------------------------------------------- /screenshots/0021_light_point.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/screenshots/0021_light_point.gif -------------------------------------------------------------------------------- /screenshots/0022_light_spot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/screenshots/0022_light_spot.gif -------------------------------------------------------------------------------- /screenshots/002_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/screenshots/002_point.png -------------------------------------------------------------------------------- /screenshots/003_line_loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/screenshots/003_line_loop.png -------------------------------------------------------------------------------- /screenshots/003_line_strip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/screenshots/003_line_strip.png -------------------------------------------------------------------------------- /screenshots/003_lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/screenshots/003_lines.png -------------------------------------------------------------------------------- /screenshots/004_triangle_fan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/screenshots/004_triangle_fan.png -------------------------------------------------------------------------------- /screenshots/004_triangle_strip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/screenshots/004_triangle_strip.png -------------------------------------------------------------------------------- /screenshots/004_triangles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/screenshots/004_triangles.png -------------------------------------------------------------------------------- /screenshots/005_regular_polygons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/screenshots/005_regular_polygons.png -------------------------------------------------------------------------------- /screenshots/006_cube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/screenshots/006_cube.png -------------------------------------------------------------------------------- /screenshots/007_texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/screenshots/007_texture.png -------------------------------------------------------------------------------- /screenshots/008_texture2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/screenshots/008_texture2.png -------------------------------------------------------------------------------- /screenshots/009_texture3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/screenshots/009_texture3.gif -------------------------------------------------------------------------------- /screenshots/009_texture3.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidzhibinw/LearnGLES/HEAD/screenshots/009_texture3.mp4 -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | 3 | --------------------------------------------------------------------------------