[cogl/msvc-support] Update cogl-depth-state.c
- From: Chun-wei Fan <fanchunwei src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [cogl/msvc-support] Update cogl-depth-state.c
- Date: Tue, 31 May 2011 02:36:54 +0000 (UTC)
commit d1decd2d1a0edd3b292f64bc03621dd3f2f40e56
Author: Chun-wei Fan <fanchunwei src gnome org>
Date: Tue May 31 10:36:43 2011 +0800
Update cogl-depth-state.c
It seems that "near" will conflict with the definitions in windef.h,
so change the parameter names to match the ones given in cogl-depth-state.h
cogl/cogl-depth-state.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/cogl/cogl-depth-state.c b/cogl/cogl-depth-state.c
index 076d1b2..c382ec1 100644
--- a/cogl/cogl-depth-state.c
+++ b/cogl/cogl-depth-state.c
@@ -89,12 +89,12 @@ cogl_depth_state_get_test_function (CoglDepthState *state)
void
cogl_depth_state_set_range (CoglDepthState *state,
- float near,
- float far)
+ float near_val,
+ float far_val)
{
g_return_if_fail (state->magic == COGL_DEPTH_STATE_MAGIC);
- state->range_near = near;
- state->range_far = far;
+ state->range_near = near_val;
+ state->range_far = far_val;
}
void
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]