Module: wine
Branch: master
Commit: ba3509265d07003a67f996967187693427d7c7af
URL: http://source.winehq.org/git/wine.git/?a=commit;h=ba3509265d07003a67f996967…
Author: Francois Gouget <fgouget(a)free.fr>
Date: Sun May 29 12:38:56 2016 +0200
wined3d: Spelling fixes.
Signed-off-by: Francois Gouget <fgouget(a)free.fr>
Signed-off-by: Henri Verbeet <hverbeet(a)codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
dlls/wined3d/device.c | 6 +++---
dlls/wined3d/texture.c | 2 +-
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/dlls/wined3d/device.c b/dlls/wined3d/device.c
index 84834a4..ddfc715 100644
--- a/dlls/wined3d/device.c
+++ b/dlls/wined3d/device.c
@@ -819,9 +819,9 @@ static void create_default_sampler(struct wined3d_device *device)
const struct wined3d_gl_info *gl_info = &device->adapter->gl_info;
/*
- * In SM4+ shaders there is a separation between resources and samplers. Some of shader
- * instructions allow to access resources without using samplers.
- * In GLSL resources are always accessed through sampler or image variables. The default
+ * In SM4+ shaders there is a separation between resources and samplers. Some shader
+ * instructions allow access to resources without using samplers.
+ * In GLSL, resources are always accessed through sampler or image variables. The default
* sampler object is used to emulate the direct resource access when there is no sampler state
* to use.
*/
diff --git a/dlls/wined3d/texture.c b/dlls/wined3d/texture.c
index bdb8807..f42250b 100644
--- a/dlls/wined3d/texture.c
+++ b/dlls/wined3d/texture.c
@@ -43,7 +43,7 @@ static BOOL wined3d_texture_use_immutable_storage(const struct wined3d_texture *
const struct wined3d_gl_info *gl_info)
{
/* We don't expect to create texture views for textures with height-scaled formats.
- * Besides, ARB_texture_storage doesn't allow to specify exact sizes for all levels. */
+ * Besides, ARB_texture_storage doesn't allow specifying exact sizes for all levels. */
return gl_info->supported[ARB_TEXTURE_STORAGE]
&& !(texture->resource.format_flags & WINED3DFMT_FLAG_HEIGHT_SCALE);
}
Module: wine
Branch: master
Commit: 99a5afc09b1e8928a2b3270ce67784083d2f5b0c
URL: http://source.winehq.org/git/wine.git/?a=commit;h=99a5afc09b1e8928a2b3270ce…
Author: Francois Gouget <fgouget(a)free.fr>
Date: Sun May 29 12:42:56 2016 +0200
d3dxof: Spelling fixes.
Signed-off-by: Francois Gouget <fgouget(a)free.fr>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
dlls/d3dxof/parsing.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/d3dxof/parsing.c b/dlls/d3dxof/parsing.c
index 54566b0..f7724ec 100644
--- a/dlls/d3dxof/parsing.c
+++ b/dlls/d3dxof/parsing.c
@@ -748,7 +748,7 @@ static WORD parse_TOKEN(parse_buffer * buf)
{
buf->list_nb_elements--;
buf->list_separator = FALSE;
- /* Insert separarator between each values and since list does not accept separator at the end
+ /* Insert separator between each value, and since list does not accept separator at the end
use a comma so any extra separator will generate an error */
token = TOKEN_COMMA;
}
@@ -761,7 +761,7 @@ static WORD parse_TOKEN(parse_buffer * buf)
*(DWORD*)buf->value = value;
buf->list_separator = TRUE;
- /* Convert list into a serie of their basic type counterpart */
+ /* Convert list into a series of their basic type counterpart */
token = buf->list_type_float ? TOKEN_FLOAT : TOKEN_INTEGER;
}
dump_TOKEN(token);
Module: wine
Branch: master
Commit: 8e558cf72562809738490638c87b6dfd563317e2
URL: http://source.winehq.org/git/wine.git/?a=commit;h=8e558cf72562809738490638c…
Author: Francois Gouget <fgouget(a)free.fr>
Date: Sun May 29 12:41:36 2016 +0200
secur32: Spelling fixes.
Signed-off-by: Francois Gouget <fgouget(a)free.fr>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
dlls/secur32/schannel_macosx.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/secur32/schannel_macosx.c b/dlls/secur32/schannel_macosx.c
index 1c9b35d..b940881 100644
--- a/dlls/secur32/schannel_macosx.c
+++ b/dlls/secur32/schannel_macosx.c
@@ -596,7 +596,7 @@ static OSStatus schan_pull_adapter(SSLConnectionRef transport, void *buff,
*
* Returns:
* noErr on complete or partial success; *buff_len indicates how much data
- * was actually written, which may be less than requrested.
+ * was actually written, which may be less than requested.
* errSSLWouldBlock when no data could be written without blocking. The
* caller should try again.
* other error code for failure.