Mesa (master): i915g: Fix comment about sin/cos constants.

Stephane Marchesin marcheu at kemper.freedesktop.org
Tue Jun 28 19:12:46 UTC 2011


Module: Mesa
Branch: master
Commit: fe36bc0c41ee7fd3aa7b364a8301d50613644f71
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=fe36bc0c41ee7fd3aa7b364a8301d50613644f71

Author: Stéphane Marchesin <marcheu at chromium.org>
Date:   Tue Jun 28 12:07:11 2011 -0700

i915g: Fix comment about sin/cos constants.

---

 src/gallium/drivers/i915/i915_fpc_translate.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/gallium/drivers/i915/i915_fpc_translate.c b/src/gallium/drivers/i915/i915_fpc_translate.c
index 41c94e6..cae349e 100644
--- a/src/gallium/drivers/i915/i915_fpc_translate.c
+++ b/src/gallium/drivers/i915/i915_fpc_translate.c
@@ -85,14 +85,14 @@ static const float scs_cos_constants[4] = { 1.0,
    -1.0f / (6 * 5 * 4 * 3 * 2 * 1)
 };
 
-/* 1, -1/3!, 1/5!, -1/7! */
+/* 2*pi, -(2*pi)^3/3!, (2*pi)^5/5!, -(2*pi)^7/7! */
 static const float sin_constants[4] = { 2.0 * M_PI,
    -8.0f * M_PI * M_PI * M_PI / (3 * 2 * 1),
    32.0f * M_PI * M_PI * M_PI * M_PI * M_PI / (5 * 4 * 3 * 2 * 1),
    -128.0f * M_PI * M_PI * M_PI * M_PI * M_PI * M_PI * M_PI / (7 * 6 * 5 * 4 * 3 * 2 * 1)
 };
 
-/* 1, -1/2!, 1/4!, -1/6! */
+/* 1, -(2*pi)^2/2!, (2*pi)^4/4!, -(2*pi)^6/6! */
 static const float cos_constants[4] = { 1.0,
    -4.0f * M_PI * M_PI / (2 * 1),
    16.0f * M_PI * M_PI * M_PI * M_PI / (4 * 3 * 2 * 1),




More information about the mesa-commit mailing list