瀏覽代碼

Replaced old mail by twitter user

pull/25/head
raysan5 9 年之前
父節點
當前提交
7834a4e2fc
共有 7 個文件被更改,包括 8 次插入8 次删除
  1. +1
    -1
      src/models.c
  2. +2
    -2
      src/rlgl.c
  3. +1
    -1
      src/rlgl.h
  4. +1
    -1
      src/shapes.c
  5. +1
    -1
      src/text.c
  6. +1
    -1
      src/textures.c
  7. +1
    -1
      src/utils.c

+ 1
- 1
src/models.c 查看文件

@ -4,7 +4,7 @@
* *
* Basic functions to draw 3d shapes and load/draw 3d models (.OBJ) * Basic functions to draw 3d shapes and load/draw 3d models (.OBJ)
* *
* Copyright (c) 2014 Ramon Santamaria (n">Ray San - raysan@raysanweb.com)
* Copyright (c) 2014 Ramon Santamaria (err">@raysan5)
* *
* This software is provided "as-is", without any express or implied warranty. In no event * This software is provided "as-is", without any express or implied warranty. In no event
* will the authors be held liable for any damages arising from the use of this software. * will the authors be held liable for any damages arising from the use of this software.

+ 2
- 2
src/rlgl.c 查看文件

@ -7,7 +7,7 @@
* OpenGL 3.3+ - Vertex data is stored in VAOs, call rlglDraw() to render * OpenGL 3.3+ - Vertex data is stored in VAOs, call rlglDraw() to render
* OpenGL ES 2 - Same behaviour as OpenGL 3.3+ * OpenGL ES 2 - Same behaviour as OpenGL 3.3+
* *
* Copyright (c) 2014 Ramon Santamaria (n">Ray San - raysan@raysanweb.com)
* Copyright (c) 2014 Ramon Santamaria (err">@raysan5)
* *
* This software is provided "as-is", without any express or implied warranty. In no event * This software is provided "as-is", without any express or implied warranty. In no event
* will the authors be held liable for any damages arising from the use of this software. * will the authors be held liable for any damages arising from the use of this software.
@ -1468,7 +1468,7 @@ void rlglInitGraphics(int offsetX, int offsetY, int width, int height)
// Possible options: GL_SMOOTH (Color interpolation) or GL_FLAT (no interpolation) // Possible options: GL_SMOOTH (Color interpolation) or GL_FLAT (no interpolation)
#endif #endif
TraceLog(INFO, "OpenGL Graphics initialized successfully");
TraceLog(INFO, "OpenGL graphic device initialized successfully");
} }
// Get world coordinates from screen coordinates // Get world coordinates from screen coordinates

+ 1
- 1
src/rlgl.h 查看文件

@ -7,7 +7,7 @@
* OpenGL 3.3+ - Vertex data is stored in VAOs, call rlglDraw() to render * OpenGL 3.3+ - Vertex data is stored in VAOs, call rlglDraw() to render
* OpenGL ES 2 - Vertex data is stored in VBOs or VAOs (when available), call rlglDraw() to render * OpenGL ES 2 - Vertex data is stored in VBOs or VAOs (when available), call rlglDraw() to render
* *
* Copyright (c) 2014 Ramon Santamaria (n">Ray San - raysan@raysanweb.com)
* Copyright (c) 2014 Ramon Santamaria (err">@raysan5)
* *
* This software is provided "as-is", without any express or implied warranty. In no event * This software is provided "as-is", without any express or implied warranty. In no event
* will the authors be held liable for any damages arising from the use of this software. * will the authors be held liable for any damages arising from the use of this software.

+ 1
- 1
src/shapes.c 查看文件

@ -4,7 +4,7 @@
* *
* Basic functions to draw 2d Shapes and check collisions * Basic functions to draw 2d Shapes and check collisions
* *
* Copyright (c) 2014 Ramon Santamaria (n">Ray San - raysan@raysanweb.com)
* Copyright (c) 2014 Ramon Santamaria (err">@raysan5)
* *
* This software is provided "as-is", without any express or implied warranty. In no event * This software is provided "as-is", without any express or implied warranty. In no event
* will the authors be held liable for any damages arising from the use of this software. * will the authors be held liable for any damages arising from the use of this software.

+ 1
- 1
src/text.c 查看文件

@ -4,7 +4,7 @@
* *
* Basic functions to load SpriteFonts and draw Text * Basic functions to load SpriteFonts and draw Text
* *
* Copyright (c) 2014 Ramon Santamaria (n">Ray San - raysan@raysanweb.com)
* Copyright (c) 2014 Ramon Santamaria (err">@raysan5)
* *
* This software is provided "as-is", without any express or implied warranty. In no event * This software is provided "as-is", without any express or implied warranty. In no event
* will the authors be held liable for any damages arising from the use of this software. * will the authors be held liable for any damages arising from the use of this software.

+ 1
- 1
src/textures.c 查看文件

@ -8,7 +8,7 @@
* stb_image - Multiple formats image loading (JPEG, PNG, BMP, TGA, PSD, GIF, PIC) * stb_image - Multiple formats image loading (JPEG, PNG, BMP, TGA, PSD, GIF, PIC)
* NOTE: stb_image has been slightly modified, original library: https://github.com/nothings/stb * NOTE: stb_image has been slightly modified, original library: https://github.com/nothings/stb
* *
* Copyright (c) 2014 Ramon Santamaria (n">Ray San - raysan@raysanweb.com)
* Copyright (c) 2014 Ramon Santamaria (err">@raysan5)
* *
* This software is provided "as-is", without any express or implied warranty. In no event * This software is provided "as-is", without any express or implied warranty. In no event
* will the authors be held liable for any damages arising from the use of this software. * will the authors be held liable for any damages arising from the use of this software.

+ 1
- 1
src/utils.c 查看文件

@ -8,7 +8,7 @@
* tinfl - zlib DEFLATE algorithm decompression lib * tinfl - zlib DEFLATE algorithm decompression lib
* stb_image_write - PNG writting functions * stb_image_write - PNG writting functions
* *
* Copyright (c) 2014 Ramon Santamaria (n">Ray San - raysan@raysanweb.com)
* Copyright (c) 2014 Ramon Santamaria (err">@raysan5)
* *
* This software is provided "as-is", without any express or implied warranty. In no event * This software is provided "as-is", without any express or implied warranty. In no event
* will the authors be held liable for any damages arising from the use of this software. * will the authors be held liable for any damages arising from the use of this software.

Loading…
取消
儲存