使用 JavaScript能使本网站更好的工作。
首页
探索
帮助
登录
Archivist
/
raylib-src
镜像自地址
https://github.com/raysan5/raylib
关注
1
点赞
0
派生
0
代码
工单
0
版本发布
24
百科
动态
浏览代码
Fix typo (s/proedural/procedural)
pull/610/head
Ahmad Fatoum
6 年前
父节点
6905a875ed
当前提交
548dbeb1ca
找不到此签名对应的密钥
GPG 密钥 ID:
C3EAC3DE9321D59B
共有
4 个文件被更改
,包括
5 次插入
和
5 次删除
分列视图
Diff 选项
显示统计
下载 Patch 文件
下载 Diff 文件
+1
-1
src/CMakeOptions.txt
+2
-2
src/config.h
+1
-1
src/config.h.in
+1
-1
src/textures.c
+ 1
- 1
src/CMakeOptions.txt
查看文件
@ -45,7 +45,7 @@ option(SUPPORT_FONT_TEXTURE "Draw rectangle shapes using font texture white char
option(SUPPORT_QUADS_DRAW_MODE "Use QUADS instead of TRIANGLES for drawing when possible. Some lines-based shapes could still use lines" ON)
# textures.c
option(SUPPORT_IMAGE_GENERATION "Support proedural image generation functionality (gradient, spot, perlin-noise, cellular)" ON)
option(SUPPORT_IMAGE_GENERATION "Support pro
c
edural image generation functionality (gradient, spot, perlin-noise, cellular)" ON)
option(SUPPORT_FILEFORMAT_PNG "Support loading PNG as textures" ON)
option(SUPPORT_FILEFORMAT_DDS "Support loading DDS as textures" ON)
option(SUPPORT_FILEFORMAT_HDR "Support loading HDR as textures" ON)
+ 2
- 2
src/config.h
查看文件
@ -86,10 +86,10 @@
/
/
#
define
SUPPORT_FILEFORMAT_PKM
1
/
/
#
define
SUPPORT_FILEFORMAT_PVR
1
/
/
Support
multiple
image
editing
functions
to
scale
,
adjust
colors
,
flip
,
draw
on
images
,
crop
.
.
.
/
/
Support
multiple
image
editing
functions
to
scale
,
adjust
colors
,
flip
,
draw
on
images
,
crop
.
.
.
/
/
If
not
defined
only
three
image
editing
functions
supported
:
ImageFormat
(
)
,
ImageAlphaMask
(
)
,
ImageToPOT
(
)
#
define SUPPORT_IMAGE_MANIPULATION 1
/
/
Support
proedural
image
generation
functionality
(
gradient
,
spot
,
perlin
-
noise
,
cellular
)
/
/
Support
pro
c
edural
image
generation
functionality
(
gradient
,
spot
,
perlin
-
noise
,
cellular
)
#
define SUPPORT_IMAGE_GENERATION 1
+ 1
- 1
src/config.h.in
查看文件
@ -44,7 +44,7 @@
/* Support multiple image editing functions to scale, adjust colors, flip, draw on images, crop... If not defined only three image editing functions supported: ImageFormat(), ImageAlphaMask(), ImageToPOT() */
#cmakedefine SUPPORT_IMAGE_MANIPULATION 1
/* Support proedural image generation functionality (gradient, spot, perlin-noise, cellular) */
/* Support pro
c
edural image generation functionality (gradient, spot, perlin-noise, cellular) */
#cmakedefine SUPPORT_IMAGE_GENERATION 1
// text.c
+ 1
- 1
src/textures.c
查看文件
@ -24,7 +24,7 @@
*
If
not
defined
only
three
image
editing
functions
supported
:
ImageFormat
(
)
,
ImageAlphaMask
(
)
,
ImageToPOT
(
)
*
*
#
define
SUPPORT_IMAGE_GENERATION
*
Support
proedural
image
generation
functionality
(
gradient
,
spot
,
perlin
-
noise
,
cellular
)
*
Support
pro
c
edural
image
generation
functionality
(
gradient
,
spot
,
perlin
-
noise
,
cellular
)
*
*
DEPENDENCIES
:
*
stb_image
-
Multiple
image
formats
loading
(
JPEG
,
PNG
,
BMP
,
TGA
,
PSD
,
GIF
,
PIC
)
撰写
预览
正在加载...
取消
保存