mirror of
https://github.com/GRRLIB/GRRLIB.git
synced 2024-11-22 06:52:20 +00:00
Create a .nojekyll file in the doc folder
Files that start with an underscore are missing in GitHub pages (doxygen documentation). The work around for this behavior is to include a .nojekyll file in the root path to turn off Jekyll. If we add a .nojekyll file, the source files will be published without any modifications.
This commit is contained in:
parent
3161ad7a71
commit
d406c92ac1
3 changed files with 7 additions and 4 deletions
|
@ -31,6 +31,9 @@ script:
|
|||
- (cd GRRLIB && sudo -E make PLATFORM=cube clean all)
|
||||
- doxygen grrlib.doxygen
|
||||
|
||||
before_deploy:
|
||||
touch $TRAVIS_BUILD_DIR/doc/.nojekyll
|
||||
|
||||
deploy:
|
||||
provider: pages
|
||||
skip_cleanup: true
|
||||
|
|
|
@ -33,7 +33,7 @@ THE SOFTWARE.
|
|||
* @param color The color of the circle in RGBA format.
|
||||
* @param filled Set to true to fill the circle.
|
||||
*/
|
||||
void GRRLIB_Circle (const f32 x, const f32 y, const f32 radius,
|
||||
void GRRLIB_Circle (const f32 x, const f32 y, const f32 radius,
|
||||
const u32 color, const u8 filled) {
|
||||
guVector v[36];
|
||||
u32 ncolor[36];
|
||||
|
|
|
@ -83,7 +83,7 @@ void GRRLIB_Exit (void);
|
|||
|
||||
//------------------------------------------------------------------------------
|
||||
// GRRLIB_fbAdvanced.c - Render to framebuffer: Advanced primitives
|
||||
void GRRLIB_Circle (const f32 x, const f32 y, const f32 radius,
|
||||
void GRRLIB_Circle (const f32 x, const f32 y, const f32 radius,
|
||||
const u32 color, const u8 filled);
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
|
@ -156,8 +156,8 @@ void GRRLIB_ObjectViewScale(f32 scalx, f32 scaly, f32 scalz);
|
|||
void GRRLIB_ObjectViewRotate(f32 angx, f32 angy, f32 angz);
|
||||
void GRRLIB_ObjectViewTrans(f32 posx, f32 posy, f32 posz);
|
||||
void GRRLIB_ObjectViewEnd(void);
|
||||
void GRRLIB_ObjectView(f32 posx, f32 posy, f32 posz, f32 angx, f32 angy, f32 angz, f32 scalx, f32 scaly, f32 scalz);
|
||||
void GRRLIB_ObjectViewInv(f32 posx, f32 posy, f32 posz, f32 angx, f32 angy, f32 angz, f32 scalx, f32 scaly, f32 scalz);
|
||||
void GRRLIB_ObjectView(f32 posx, f32 posy, f32 posz, f32 angx, f32 angy, f32 angz, f32 scalx, f32 scaly, f32 scalz);
|
||||
void GRRLIB_ObjectViewInv(f32 posx, f32 posy, f32 posz, f32 angx, f32 angy, f32 angz, f32 scalx, f32 scaly, f32 scalz);
|
||||
void GRRLIB_SetTexture(GRRLIB_texImg *tex, bool rep);
|
||||
void GRRLIB_DrawTorus(f32 r, f32 R, int nsides, int rings, bool filled, u32 col);
|
||||
void GRRLIB_DrawSphere(f32 r, int lats, int longs, bool filled, u32 col);
|
||||
|
|
Loading…
Reference in a new issue