[Mesa-dev] [PATCH 01/16] main: Add MESA_VERBOSE=api support for glTexImage
Jordan Justen
jordan.l.justen at intel.com
Wed Aug 24 23:54:53 UTC 2016
Signed-off-by: Jordan Justen <jordan.l.justen at intel.com>
---
src/mesa/main/teximage.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/src/mesa/main/teximage.c b/src/mesa/main/teximage.c
index 8869b3d..efde114 100644
--- a/src/mesa/main/teximage.c
+++ b/src/mesa/main/teximage.c
@@ -5341,6 +5341,11 @@ texture_image_multisample(struct gl_context *ctx, GLuint dims,
GLenum sample_count_error;
bool dsa = strstr(func, "ture") ? true : false;
+ if (MESA_VERBOSE & (VERBOSE_API|VERBOSE_TEXTURE)) {
+ _mesa_debug(ctx, "%s(target=%s, samples=%d)\n", func,
+ _mesa_enum_to_string(target), samples);
+ }
+
if (!((ctx->Extensions.ARB_texture_multisample
&& _mesa_is_desktop_gl(ctx))) && !_mesa_is_gles31(ctx)) {
_mesa_error(ctx, GL_INVALID_OPERATION, "%s(unsupported)", func);
--
2.8.0.rc3
More information about the mesa-dev
mailing list