summaryrefslogtreecommitdiff
path: root/src/mesa/es/main
diff options
context:
space:
mode:
authorChia-I Wu <olvaffe@gmail.com>2010-01-05 15:57:13 +0800
committerChia-I Wu <olvaffe@gmail.com>2010-01-12 11:25:08 +0800
commitbffe94d48ac70d1498581d80f2cb3be78ccc24f4 (patch)
tree6e462cf2b55d901c74aabdd9184d10714db8c540 /src/mesa/es/main
parent562c127693200822f04a145db50add1be2425d7b (diff)
mesa/es: Fix build issue after merge.
In cd6b8dd9e82fedc55d033131fbc0f8ee950567c8, color read/type fields are moved; Based on 068596c9a7e8d330ffdff8ad8700bd6093b5bdea and cc020425e929110613ddb405d3e82313d27a35ed, GLSL builtin library is autogenerated and GLSL libraries are built and used. Signed-off-by: Chia-I Wu <olvaffe@gmail.com>
Diffstat (limited to 'src/mesa/es/main')
-rw-r--r--src/mesa/es/main/get_gen.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mesa/es/main/get_gen.py b/src/mesa/es/main/get_gen.py
index fee6670104..b820157be0 100644
--- a/src/mesa/es/main/get_gen.py
+++ b/src/mesa/es/main/get_gen.py
@@ -209,9 +209,9 @@ StateVars_common = [
# GL_OES_read_format
( "GL_IMPLEMENTATION_COLOR_READ_TYPE_OES", GLint,
- ["ctx->Const.ColorReadType"], "", None),
+ ["_mesa_get_color_read_type(ctx)"], "", ["OES_read_format"] ),
( "GL_IMPLEMENTATION_COLOR_READ_FORMAT_OES", GLint,
- ["ctx->Const.ColorReadFormat"], "", None),
+ ["_mesa_get_color_read_format(ctx)"], "", ["OES_read_format"] ),
# GL_OES_framebuffer_object
( "GL_FRAMEBUFFER_BINDING_EXT", GLint, ["ctx->DrawBuffer->Name"], "",
@@ -655,6 +655,7 @@ def EmitHeader():
#include "main/mtypes.h"
#include "main/state.h"
#include "main/texcompress.h"
+#include "main/framebuffer.h"
/* ES1 tokens that should be in gl.h but aren't */