diff options
author | Jason Ekstrand <[email protected]> | 2015-04-16 11:06:57 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2015-04-22 16:00:34 -0700 |
commit | a85c4c9b3f75cac9ab133caa91a40eec2e4816ae (patch) | |
tree | 3bd622411c716a5a18140a9438eda31e4c912edd /src/mesa/drivers/dri/i965/brw_wm.c | |
parent | cfc56fcee36912d5fb41262c71463292a737160e (diff) |
i965: Rename brw_compile to brw_codegen
This name better matches what it's actually used for. The patch was
generated with the following command:
for file in *; do
sed -i -e s/brw_compile/brw_codegen/g $file
done
Signed-off-by: Jason Ekstrand <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_wm.c')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_wm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_wm.c b/src/mesa/drivers/dri/i965/brw_wm.c index 308eebe9def..959f346b4c2 100644 --- a/src/mesa/drivers/dri/i965/brw_wm.c +++ b/src/mesa/drivers/dri/i965/brw_wm.c @@ -160,7 +160,7 @@ brw_wm_prog_data_compare(const void *in_a, const void *in_b) * we'll use one of two code generators. */ bool -brw_compile_wm_prog(struct brw_context *brw, +brw_codegen_wm_prog(struct brw_context *brw, struct gl_shader_program *prog, struct brw_fragment_program *fp, struct brw_wm_prog_key *key) @@ -621,7 +621,7 @@ brw_upload_wm_prog(struct brw_context *brw) if (!brw_search_cache(&brw->cache, BRW_CACHE_FS_PROG, &key, sizeof(key), &brw->wm.base.prog_offset, &brw->wm.prog_data)) { - bool success = brw_compile_wm_prog(brw, current, fp, &key); + bool success = brw_codegen_wm_prog(brw, current, fp, &key); (void) success; assert(success); } |