├── .gitignore ├── .travis-deps.sh ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── include └── GL │ └── gl3ds.h └── src ├── arrayobj.c ├── arrayobj.h ├── attrib.c ├── attrib.h ├── blend.c ├── blend.h ├── bufferobj.c ├── bufferobj.h ├── buffers.c ├── buffers.h ├── c11 └── threads.h ├── clear.c ├── colormac.h ├── compiler.h ├── config.h ├── context.c ├── context.h ├── dd.h ├── debug.c ├── debug.h ├── depth.c ├── depth.h ├── drivers ├── driverfuncs.c ├── driverfuncs.h ├── meta.c ├── meta.h ├── meta_copy_image.c ├── meta_generate_mipmap.c ├── meta_tex_subimage.c ├── s_chan.h ├── s_context.c ├── s_context.h ├── s_texture.c └── swrast.h ├── enable.c ├── enable.h ├── enums.c ├── enums.h ├── errors.c ├── errors.h ├── extensions.c ├── extensions.h ├── fbobject.c ├── fbobject.h ├── format_info.h ├── format_pack.c ├── format_pack.h ├── formats.c ├── formats.h ├── framebuffer.c ├── framebuffer.h ├── get.c ├── get.h ├── get_hash.h ├── getstring.c ├── gl3ds.c ├── glformats.c ├── glformats.h ├── glheader.h ├── hash.c ├── hash.h ├── image.c ├── image.h ├── imports.c ├── imports.h ├── light.c ├── light.h ├── macros.h ├── math ├── m_matrix.c └── m_matrix.h ├── matrix.c ├── matrix.h ├── mipmap.c ├── mipmap.h ├── mtypes.h ├── multisample.c ├── multisample.h ├── pack.c ├── pack.h ├── pbo.c ├── pbo.h ├── pixel.c ├── pixel.h ├── pixelstore.c ├── pixelstore.h ├── pixeltransfer.c ├── pixeltransfer.h ├── polygon.c ├── polygon.h ├── readpix.c ├── readpix.h ├── renderbuffer.c ├── renderbuffer.h ├── samplerobj.c ├── samplerobj.h ├── scissor.c ├── scissor.h ├── shader.c ├── shader.h ├── shared.c ├── shared.h ├── state.c ├── state.h ├── stencil.c ├── stencil.h ├── texcompress.c ├── texcompress.h ├── texcompress_etc.c ├── texcompress_etc.h ├── texcompress_etc_tmp.h ├── texenv.c ├── texenv.h ├── texformat.c ├── texformat.h ├── texgetimage.c ├── texgetimage.h ├── teximage.c ├── teximage.h ├── texobj.c ├── texobj.h ├── texparam.c ├── texparam.h ├── texstate.c ├── texstate.h ├── texstorage.c ├── texstorage.h ├── texstore.c ├── texstore.h ├── textureview.c ├── textureview.h ├── uniform.c ├── util ├── bitset.h ├── format_srgb.c ├── format_srgb.h ├── format_srgb.py ├── hash_table.c ├── hash_table.h ├── macros.h ├── ralloc.c ├── ralloc.h ├── simple_list.h └── u_math.h ├── varray.c ├── varray.h ├── viewport.c └── viewport.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis-deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/.travis-deps.sh -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/README.md -------------------------------------------------------------------------------- /include/GL/gl3ds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/include/GL/gl3ds.h -------------------------------------------------------------------------------- /src/arrayobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/arrayobj.c -------------------------------------------------------------------------------- /src/arrayobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/arrayobj.h -------------------------------------------------------------------------------- /src/attrib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/attrib.c -------------------------------------------------------------------------------- /src/attrib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/attrib.h -------------------------------------------------------------------------------- /src/blend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/blend.c -------------------------------------------------------------------------------- /src/blend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/blend.h -------------------------------------------------------------------------------- /src/bufferobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/bufferobj.c -------------------------------------------------------------------------------- /src/bufferobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/bufferobj.h -------------------------------------------------------------------------------- /src/buffers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/buffers.c -------------------------------------------------------------------------------- /src/buffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/buffers.h -------------------------------------------------------------------------------- /src/c11/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/c11/threads.h -------------------------------------------------------------------------------- /src/clear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/clear.c -------------------------------------------------------------------------------- /src/colormac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/colormac.h -------------------------------------------------------------------------------- /src/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/compiler.h -------------------------------------------------------------------------------- /src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/config.h -------------------------------------------------------------------------------- /src/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/context.c -------------------------------------------------------------------------------- /src/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/context.h -------------------------------------------------------------------------------- /src/dd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/dd.h -------------------------------------------------------------------------------- /src/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/debug.c -------------------------------------------------------------------------------- /src/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/debug.h -------------------------------------------------------------------------------- /src/depth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/depth.c -------------------------------------------------------------------------------- /src/depth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/depth.h -------------------------------------------------------------------------------- /src/drivers/driverfuncs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/drivers/driverfuncs.c -------------------------------------------------------------------------------- /src/drivers/driverfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/drivers/driverfuncs.h -------------------------------------------------------------------------------- /src/drivers/meta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/drivers/meta.c -------------------------------------------------------------------------------- /src/drivers/meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/drivers/meta.h -------------------------------------------------------------------------------- /src/drivers/meta_copy_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/drivers/meta_copy_image.c -------------------------------------------------------------------------------- /src/drivers/meta_generate_mipmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/drivers/meta_generate_mipmap.c -------------------------------------------------------------------------------- /src/drivers/meta_tex_subimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/drivers/meta_tex_subimage.c -------------------------------------------------------------------------------- /src/drivers/s_chan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/drivers/s_chan.h -------------------------------------------------------------------------------- /src/drivers/s_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/drivers/s_context.c -------------------------------------------------------------------------------- /src/drivers/s_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/drivers/s_context.h -------------------------------------------------------------------------------- /src/drivers/s_texture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/drivers/s_texture.c -------------------------------------------------------------------------------- /src/drivers/swrast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/drivers/swrast.h -------------------------------------------------------------------------------- /src/enable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/enable.c -------------------------------------------------------------------------------- /src/enable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/enable.h -------------------------------------------------------------------------------- /src/enums.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/enums.c -------------------------------------------------------------------------------- /src/enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/enums.h -------------------------------------------------------------------------------- /src/errors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/errors.c -------------------------------------------------------------------------------- /src/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/errors.h -------------------------------------------------------------------------------- /src/extensions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/extensions.c -------------------------------------------------------------------------------- /src/extensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/extensions.h -------------------------------------------------------------------------------- /src/fbobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/fbobject.c -------------------------------------------------------------------------------- /src/fbobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/fbobject.h -------------------------------------------------------------------------------- /src/format_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/format_info.h -------------------------------------------------------------------------------- /src/format_pack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/format_pack.c -------------------------------------------------------------------------------- /src/format_pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/format_pack.h -------------------------------------------------------------------------------- /src/formats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/formats.c -------------------------------------------------------------------------------- /src/formats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/formats.h -------------------------------------------------------------------------------- /src/framebuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/framebuffer.c -------------------------------------------------------------------------------- /src/framebuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/framebuffer.h -------------------------------------------------------------------------------- /src/get.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/get.c -------------------------------------------------------------------------------- /src/get.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/get.h -------------------------------------------------------------------------------- /src/get_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/get_hash.h -------------------------------------------------------------------------------- /src/getstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/getstring.c -------------------------------------------------------------------------------- /src/gl3ds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/gl3ds.c -------------------------------------------------------------------------------- /src/glformats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/glformats.c -------------------------------------------------------------------------------- /src/glformats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/glformats.h -------------------------------------------------------------------------------- /src/glheader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/glheader.h -------------------------------------------------------------------------------- /src/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/hash.c -------------------------------------------------------------------------------- /src/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/hash.h -------------------------------------------------------------------------------- /src/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/image.c -------------------------------------------------------------------------------- /src/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/image.h -------------------------------------------------------------------------------- /src/imports.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/imports.c -------------------------------------------------------------------------------- /src/imports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/imports.h -------------------------------------------------------------------------------- /src/light.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/light.c -------------------------------------------------------------------------------- /src/light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/light.h -------------------------------------------------------------------------------- /src/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/macros.h -------------------------------------------------------------------------------- /src/math/m_matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/math/m_matrix.c -------------------------------------------------------------------------------- /src/math/m_matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/math/m_matrix.h -------------------------------------------------------------------------------- /src/matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/matrix.c -------------------------------------------------------------------------------- /src/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/matrix.h -------------------------------------------------------------------------------- /src/mipmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/mipmap.c -------------------------------------------------------------------------------- /src/mipmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/mipmap.h -------------------------------------------------------------------------------- /src/mtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/mtypes.h -------------------------------------------------------------------------------- /src/multisample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/multisample.c -------------------------------------------------------------------------------- /src/multisample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/multisample.h -------------------------------------------------------------------------------- /src/pack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/pack.c -------------------------------------------------------------------------------- /src/pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/pack.h -------------------------------------------------------------------------------- /src/pbo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/pbo.c -------------------------------------------------------------------------------- /src/pbo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/pbo.h -------------------------------------------------------------------------------- /src/pixel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/pixel.c -------------------------------------------------------------------------------- /src/pixel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/pixel.h -------------------------------------------------------------------------------- /src/pixelstore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/pixelstore.c -------------------------------------------------------------------------------- /src/pixelstore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/pixelstore.h -------------------------------------------------------------------------------- /src/pixeltransfer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/pixeltransfer.c -------------------------------------------------------------------------------- /src/pixeltransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/pixeltransfer.h -------------------------------------------------------------------------------- /src/polygon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/polygon.c -------------------------------------------------------------------------------- /src/polygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/polygon.h -------------------------------------------------------------------------------- /src/readpix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/readpix.c -------------------------------------------------------------------------------- /src/readpix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/readpix.h -------------------------------------------------------------------------------- /src/renderbuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/renderbuffer.c -------------------------------------------------------------------------------- /src/renderbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/renderbuffer.h -------------------------------------------------------------------------------- /src/samplerobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/samplerobj.c -------------------------------------------------------------------------------- /src/samplerobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/samplerobj.h -------------------------------------------------------------------------------- /src/scissor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/scissor.c -------------------------------------------------------------------------------- /src/scissor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/scissor.h -------------------------------------------------------------------------------- /src/shader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/shader.c -------------------------------------------------------------------------------- /src/shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/shader.h -------------------------------------------------------------------------------- /src/shared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/shared.c -------------------------------------------------------------------------------- /src/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/shared.h -------------------------------------------------------------------------------- /src/state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/state.c -------------------------------------------------------------------------------- /src/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/state.h -------------------------------------------------------------------------------- /src/stencil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/stencil.c -------------------------------------------------------------------------------- /src/stencil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/stencil.h -------------------------------------------------------------------------------- /src/texcompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/texcompress.c -------------------------------------------------------------------------------- /src/texcompress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/texcompress.h -------------------------------------------------------------------------------- /src/texcompress_etc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/texcompress_etc.c -------------------------------------------------------------------------------- /src/texcompress_etc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/texcompress_etc.h -------------------------------------------------------------------------------- /src/texcompress_etc_tmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/texcompress_etc_tmp.h -------------------------------------------------------------------------------- /src/texenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/texenv.c -------------------------------------------------------------------------------- /src/texenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/texenv.h -------------------------------------------------------------------------------- /src/texformat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/texformat.c -------------------------------------------------------------------------------- /src/texformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/texformat.h -------------------------------------------------------------------------------- /src/texgetimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/texgetimage.c -------------------------------------------------------------------------------- /src/texgetimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/texgetimage.h -------------------------------------------------------------------------------- /src/teximage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/teximage.c -------------------------------------------------------------------------------- /src/teximage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/teximage.h -------------------------------------------------------------------------------- /src/texobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/texobj.c -------------------------------------------------------------------------------- /src/texobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/texobj.h -------------------------------------------------------------------------------- /src/texparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/texparam.c -------------------------------------------------------------------------------- /src/texparam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/texparam.h -------------------------------------------------------------------------------- /src/texstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/texstate.c -------------------------------------------------------------------------------- /src/texstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/texstate.h -------------------------------------------------------------------------------- /src/texstorage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/texstorage.c -------------------------------------------------------------------------------- /src/texstorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/texstorage.h -------------------------------------------------------------------------------- /src/texstore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/texstore.c -------------------------------------------------------------------------------- /src/texstore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/texstore.h -------------------------------------------------------------------------------- /src/textureview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/textureview.c -------------------------------------------------------------------------------- /src/textureview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/textureview.h -------------------------------------------------------------------------------- /src/uniform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/uniform.c -------------------------------------------------------------------------------- /src/util/bitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/util/bitset.h -------------------------------------------------------------------------------- /src/util/format_srgb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/util/format_srgb.c -------------------------------------------------------------------------------- /src/util/format_srgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/util/format_srgb.h -------------------------------------------------------------------------------- /src/util/format_srgb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/util/format_srgb.py -------------------------------------------------------------------------------- /src/util/hash_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/util/hash_table.c -------------------------------------------------------------------------------- /src/util/hash_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/util/hash_table.h -------------------------------------------------------------------------------- /src/util/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/util/macros.h -------------------------------------------------------------------------------- /src/util/ralloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/util/ralloc.c -------------------------------------------------------------------------------- /src/util/ralloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/util/ralloc.h -------------------------------------------------------------------------------- /src/util/simple_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/util/simple_list.h -------------------------------------------------------------------------------- /src/util/u_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/util/u_math.h -------------------------------------------------------------------------------- /src/varray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/varray.c -------------------------------------------------------------------------------- /src/varray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/varray.h -------------------------------------------------------------------------------- /src/viewport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/viewport.c -------------------------------------------------------------------------------- /src/viewport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp3ds/gl3ds/HEAD/src/viewport.h --------------------------------------------------------------------------------