summaryrefslogtreecommitdiff
path: root/GLESv2/yagl_gles2_calls.c
diff options
context:
space:
mode:
Diffstat (limited to 'GLESv2/yagl_gles2_calls.c')
-rw-r--r--GLESv2/yagl_gles2_calls.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/GLESv2/yagl_gles2_calls.c b/GLESv2/yagl_gles2_calls.c
index ba0468c..3978473 100644
--- a/GLESv2/yagl_gles2_calls.c
+++ b/GLESv2/yagl_gles2_calls.c
@@ -1482,14 +1482,16 @@ YAGL_API void glShaderSource(GLuint shader, GLsizei count, const GLchar * const
samplers = yagl_vector_data(&shader_obj->state.samplers_ExternalOES);
size = yagl_vector_size(&shader_obj->state.samplers_ExternalOES);
for (i = 0; i < size; ++i) {
- YAGL_LOG_TRACE(" -> %s: at %d unit %d", samplers[i].name, samplers[i].location, samplers[i].value);
+ YAGL_LOG_TRACE(" -> %s: at %d unit %d count %d",
+ samplers[i].name, samplers[i].location, samplers[i].value, samplers[i].count);
}
YAGL_LOG_TRACE(" sampler2D uniforms:");
samplers = yagl_vector_data(&shader_obj->state.samplers_2D);
size = yagl_vector_size(&shader_obj->state.samplers_2D);
for (i = 0; i < size; ++i) {
- YAGL_LOG_TRACE(" -> %s: at %d unit %d", samplers[i].name, samplers[i].location, samplers[i].value);
+ YAGL_LOG_TRACE(" -> %s: at %d unit %d count %d",
+ samplers[i].name, samplers[i].location, samplers[i].value, samplers[i].count);
}
yagl_gles2_shader_source(shader_obj,