├── .gitignore ├── Makefile ├── guide.tex └── images ├── first-triangles.png ├── logo-badquad.png ├── logo-notextures.png └── opengl-shaded-triangle.png /.gitignore: -------------------------------------------------------------------------------- 1 | guide.aux 2 | guide.log 3 | guide.out 4 | guide.toc 5 | guide.lot 6 | guide.lof 7 | guide.pdf 8 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | NAME := guide 2 | 3 | PDFLATEX := pdflatex -file-line-error -halt-on-error 4 | 5 | $(NAME).pdf: $(NAME).tex 6 | $(PDFLATEX) $^ 7 | while grep -q "Rerun to" $(NAME).log; do $(PDFLATEX) $^ ; done 8 | 9 | clean: 10 | rm -f $(NAME).aux $(NAME).log $(NAME).out \ 11 | $(NAME).toc $(NAME).lot $(NAME).pdf 12 | -------------------------------------------------------------------------------- /images/first-triangles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simias/psx-guide/a89043ea499a8469c73f9c4c1fe6a8123ed08f18/images/first-triangles.png -------------------------------------------------------------------------------- /images/logo-badquad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simias/psx-guide/a89043ea499a8469c73f9c4c1fe6a8123ed08f18/images/logo-badquad.png -------------------------------------------------------------------------------- /images/logo-notextures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simias/psx-guide/a89043ea499a8469c73f9c4c1fe6a8123ed08f18/images/logo-notextures.png -------------------------------------------------------------------------------- /images/opengl-shaded-triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simias/psx-guide/a89043ea499a8469c73f9c4c1fe6a8123ed08f18/images/opengl-shaded-triangle.png --------------------------------------------------------------------------------