r600g: misc cleanup

Avoid using r600_screen structure to get ptr to radeon
winsys structure.

Signed-off-by: Jerome Glisse <jglisse@redhat.com>
This commit is contained in:
John Doe
2010-09-15 11:47:32 -04:00
parent 26fe16a99b
commit e0b6df4fcc
7 changed files with 47 additions and 46 deletions

View File

@@ -42,8 +42,10 @@ struct r600_shader {
struct r600_shader_io input[32];
struct r600_shader_io output[32];
enum radeon_family family;
boolean uses_kill;
boolean use_mem_constant;
boolean uses_kill;
boolean use_mem_constant;
};
int r600_shader_from_tgsi(const struct tgsi_token *tokens, struct r600_shader *shader);
#endif