gallium: move, increase ST_MAX_SHADER_TOKENS

This commit is contained in:
Brian Paul
2008-07-03 10:43:14 -06:00
parent 3c12874857
commit 00eb309c31
2 changed files with 7 additions and 3 deletions

View File

@@ -49,6 +49,9 @@
#include "cso_cache/cso_context.h"
#define ST_MAX_SHADER_TOKENS 4096
#define TGSI_DEBUG 0
@@ -296,6 +299,8 @@ st_translate_vertex_program(struct st_context *st,
/* tokenized result */
tokens, ST_MAX_SHADER_TOKENS);
assert(num_tokens < ST_MAX_SHADER_TOKENS);
vs.tokens = (struct tgsi_token *)
mem_dup(tokens, num_tokens * sizeof(tokens[0]));
@@ -467,6 +472,8 @@ st_translate_fragment_program(struct st_context *st,
/* tokenized result */
tokens, ST_MAX_SHADER_TOKENS);
assert(num_tokens < ST_MAX_SHADER_TOKENS);
fs.tokens = (struct tgsi_token *)
mem_dup(tokens, num_tokens * sizeof(tokens[0]));

View File

@@ -39,9 +39,6 @@
#include "pipe/p_shader_tokens.h"
#define ST_MAX_SHADER_TOKENS 1024
struct cso_fragment_shader;
struct cso_vertex_shader;
struct translated_vertex_program;