├── LICENSE ├── README.md ├── config_pbgl.make ├── include ├── GL │ ├── gl.h │ └── glext.h └── pbgl.h └── src ├── array.c ├── array.h ├── error.c ├── error.h ├── fog.c ├── immediate.c ├── immediate.h ├── info.c ├── info.h ├── light.c ├── light.h ├── matrix.c ├── matrix.h ├── misc.c ├── misc.h ├── pbgl.c ├── push.h ├── state.c ├── state.h ├── swizzle.c ├── swizzle.h ├── texenv.c ├── texenv.h ├── texgen.c ├── texgen.h ├── texture.c ├── texture.h ├── types.c └── types.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/pbgl/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/pbgl/HEAD/README.md -------------------------------------------------------------------------------- /config_pbgl.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/pbgl/HEAD/config_pbgl.make -------------------------------------------------------------------------------- /include/GL/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/pbgl/HEAD/include/GL/gl.h -------------------------------------------------------------------------------- /include/GL/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/pbgl/HEAD/include/GL/glext.h -------------------------------------------------------------------------------- /include/pbgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/pbgl/HEAD/include/pbgl.h -------------------------------------------------------------------------------- /src/array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/pbgl/HEAD/src/array.c -------------------------------------------------------------------------------- /src/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/pbgl/HEAD/src/array.h -------------------------------------------------------------------------------- /src/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/pbgl/HEAD/src/error.c -------------------------------------------------------------------------------- /src/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/pbgl/HEAD/src/error.h -------------------------------------------------------------------------------- /src/fog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/pbgl/HEAD/src/fog.c -------------------------------------------------------------------------------- /src/immediate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/pbgl/HEAD/src/immediate.c -------------------------------------------------------------------------------- /src/immediate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/pbgl/HEAD/src/immediate.h -------------------------------------------------------------------------------- /src/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/pbgl/HEAD/src/info.c -------------------------------------------------------------------------------- /src/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/pbgl/HEAD/src/info.h -------------------------------------------------------------------------------- /src/light.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/pbgl/HEAD/src/light.c -------------------------------------------------------------------------------- /src/light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/pbgl/HEAD/src/light.h -------------------------------------------------------------------------------- /src/matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/pbgl/HEAD/src/matrix.c -------------------------------------------------------------------------------- /src/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/pbgl/HEAD/src/matrix.h -------------------------------------------------------------------------------- /src/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/pbgl/HEAD/src/misc.c -------------------------------------------------------------------------------- /src/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/pbgl/HEAD/src/misc.h -------------------------------------------------------------------------------- /src/pbgl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/pbgl/HEAD/src/pbgl.c -------------------------------------------------------------------------------- /src/push.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/pbgl/HEAD/src/push.h -------------------------------------------------------------------------------- /src/state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/pbgl/HEAD/src/state.c -------------------------------------------------------------------------------- /src/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/pbgl/HEAD/src/state.h -------------------------------------------------------------------------------- /src/swizzle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/pbgl/HEAD/src/swizzle.c -------------------------------------------------------------------------------- /src/swizzle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/pbgl/HEAD/src/swizzle.h -------------------------------------------------------------------------------- /src/texenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/pbgl/HEAD/src/texenv.c -------------------------------------------------------------------------------- /src/texenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/pbgl/HEAD/src/texenv.h -------------------------------------------------------------------------------- /src/texgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/pbgl/HEAD/src/texgen.c -------------------------------------------------------------------------------- /src/texgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/pbgl/HEAD/src/texgen.h -------------------------------------------------------------------------------- /src/texture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/pbgl/HEAD/src/texture.c -------------------------------------------------------------------------------- /src/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/pbgl/HEAD/src/texture.h -------------------------------------------------------------------------------- /src/types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/pbgl/HEAD/src/types.c -------------------------------------------------------------------------------- /src/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/pbgl/HEAD/src/types.h --------------------------------------------------------------------------------