diff options
author | Michal Krol <mjkrol@gmail.org> | 2006-08-30 22:36:29 +0000 |
---|---|---|
committer | Michal Krol <mjkrol@gmail.org> | 2006-08-30 22:36:29 +0000 |
commit | c7f571eb7e44da65950054fa75f599453bceca0c (patch) | |
tree | 56e8fb27979410b1ef56e437fb36ce8e6c882946 /src/mesa/shader/slang/slang_execute.h | |
parent | 8a4366717a7856d7119a7203437653e1aaafedd5 (diff) |
Add missing vec4 instructions to the interpreter.
Other cosmetic changes.
Diffstat (limited to 'src/mesa/shader/slang/slang_execute.h')
-rw-r--r-- | src/mesa/shader/slang/slang_execute.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/shader/slang/slang_execute.h b/src/mesa/shader/slang/slang_execute.h index 4afad20a4d..cb152c7142 100644 --- a/src/mesa/shader/slang/slang_execute.h +++ b/src/mesa/shader/slang/slang_execute.h @@ -70,7 +70,8 @@ GLvoid slang_machine_dtr (slang_machine *); void slang_machine_init (slang_machine *); -int _slang_execute2 (const slang_assembly_file *, slang_machine *); +GLboolean +_slang_execute2 (const slang_assembly_file *, slang_machine *); #if defined(USE_X86_ASM) || defined(SLANG_X86) GLboolean _slang_x86_codegen (slang_machine *, slang_assembly_file *, GLuint); |