diff options
author | Neil Roberts <neil@linux.intel.com> | 2010-12-02 18:05:22 +0000 |
---|---|---|
committer | Neil Roberts <neil@linux.intel.com> | 2010-12-13 17:22:57 +0000 |
commit | 0c732c27ae01c50ae1ddaf2cf429cab2685f790a (patch) | |
tree | f061fc07b1cba38f958962ddef4569f6824ac61a /cogl/cogl-context.h | |
parent | 3cf9159769e76ed5cc44c8b689cd549d1c7616f1 (diff) | |
download | cogl-0c732c27ae01c50ae1ddaf2cf429cab2685f790a.tar.gz |
cogl-pipeline: Rename the fragment_{source,header}_buffer to codegen
We want to reuse the same buffers for vertends so calling them
fragment_* doesn't make sense.
Diffstat (limited to 'cogl/cogl-context.h')
-rw-r--r-- | cogl/cogl-context.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cogl/cogl-context.h b/cogl/cogl-context.h index 4b51d388..b1720230 100644 --- a/cogl/cogl-context.h +++ b/cogl/cogl-context.h @@ -85,8 +85,8 @@ typedef struct CoglPipeline *opaque_color_pipeline; /* used for set_source_color */ CoglPipeline *blended_color_pipeline; /* used for set_source_color */ CoglPipeline *texture_pipeline; /* used for set_source_texture */ - GString *fragment_header_buffer; - GString *fragment_source_buffer; + GString *codegen_header_buffer; + GString *codegen_source_buffer; GList *source_stack; int legacy_state_set; |