Mesa (lp-binning): llvmpipe: fix upper/lower-case typo

Brian Paul brianp at kemper.freedesktop.org
Thu Dec 17 21:51:53 UTC 2009


Module: Mesa
Branch: lp-binning
Commit: aeb6351a0961534e77771b962c296485b98b79fe
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=aeb6351a0961534e77771b962c296485b98b79fe

Author: Brian Paul <brianp at vmware.com>
Date:   Thu Dec 17 14:26:48 2009 -0700

llvmpipe: fix upper/lower-case typo

---

 src/gallium/drivers/llvmpipe/lp_bld_flow.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/gallium/drivers/llvmpipe/lp_bld_flow.c b/src/gallium/drivers/llvmpipe/lp_bld_flow.c
index 420d062..fe9c694 100644
--- a/src/gallium/drivers/llvmpipe/lp_bld_flow.c
+++ b/src/gallium/drivers/llvmpipe/lp_bld_flow.c
@@ -46,7 +46,7 @@
  * Enumeration of all possible flow constructs.
  */
 enum lp_build_flow_construct_kind {
-   lP_BUILD_FLOW_SCOPE,
+   LP_BUILD_FLOW_SCOPE,
    LP_BUILD_FLOW_SKIP,
 };
 
@@ -200,7 +200,7 @@ lp_build_flow_scope_begin(struct lp_build_flow_context *flow)
 {
    struct lp_build_flow_scope *scope;
 
-   scope = &lp_build_flow_push(flow, lP_BUILD_FLOW_SCOPE)->scope;
+   scope = &lp_build_flow_push(flow, LP_BUILD_FLOW_SCOPE)->scope;
    if(!scope)
       return;
 
@@ -241,7 +241,7 @@ lp_build_flow_scope_declare(struct lp_build_flow_context *flow,
 {
    struct lp_build_flow_scope *scope;
 
-   scope = &lp_build_flow_peek(flow, lP_BUILD_FLOW_SCOPE)->scope;
+   scope = &lp_build_flow_peek(flow, LP_BUILD_FLOW_SCOPE)->scope;
    if(!scope)
       return;
 
@@ -263,7 +263,7 @@ lp_build_flow_scope_end(struct lp_build_flow_context *flow)
 {
    struct lp_build_flow_scope *scope;
 
-   scope = &lp_build_flow_pop(flow, lP_BUILD_FLOW_SCOPE)->scope;
+   scope = &lp_build_flow_pop(flow, LP_BUILD_FLOW_SCOPE)->scope;
    if(!scope)
       return;
 




More information about the mesa-commit mailing list