mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 13:48:06 +02:00
mesa: Rename _mesa_lookup_enum_by_nr() to _mesa_enum_to_string().
Generated by sed; no manual changes. Signed-off-by: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Brian Paul <brianp@vmware.com>
This commit is contained in:
parent
cd0dec0d9d
commit
2f11e92cef
86 changed files with 423 additions and 423 deletions
|
|
@ -78,7 +78,7 @@ static int compar_nr( const int *a, enum_elt *b )
|
|||
|
||||
static char token_tmp[20];
|
||||
|
||||
const char *_mesa_lookup_enum_by_nr( int nr )
|
||||
const char *_mesa_enum_to_string( int nr )
|
||||
{
|
||||
enum_elt *elt;
|
||||
|
||||
|
|
|
|||
|
|
@ -312,7 +312,7 @@ setup_glsl_msaa_blit_shader(struct gl_context *ctx,
|
|||
break;
|
||||
default:
|
||||
_mesa_problem(ctx, "Unkown texture target %s\n",
|
||||
_mesa_lookup_enum_by_nr(target));
|
||||
_mesa_enum_to_string(target));
|
||||
shader_index = BLIT_2X_MSAA_SHADER_2D_MULTISAMPLE_RESOLVE;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@ fallback_required(struct gl_context *ctx, GLenum target,
|
|||
if (target == GL_TEXTURE_3D) {
|
||||
_mesa_perf_debug(ctx, MESA_DEBUG_SEVERITY_HIGH,
|
||||
"glGenerateMipmap() to %s target\n",
|
||||
_mesa_lookup_enum_by_nr(target));
|
||||
_mesa_enum_to_string(target));
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -57,7 +57,7 @@ i830StencilFuncSeparate(struct gl_context * ctx, GLenum face, GLenum func, GLint
|
|||
mask = mask & 0xff;
|
||||
|
||||
DBG("%s : func: %s, ref : 0x%x, mask: 0x%x\n", __func__,
|
||||
_mesa_lookup_enum_by_nr(func), ref, mask);
|
||||
_mesa_enum_to_string(func), ref, mask);
|
||||
|
||||
|
||||
I830_STATECHANGE(i830, I830_UPLOAD_CTX);
|
||||
|
|
@ -95,9 +95,9 @@ i830StencilOpSeparate(struct gl_context * ctx, GLenum face, GLenum fail, GLenum
|
|||
int fop, dfop, dpop;
|
||||
|
||||
DBG("%s: fail : %s, zfail: %s, zpass : %s\n", __func__,
|
||||
_mesa_lookup_enum_by_nr(fail),
|
||||
_mesa_lookup_enum_by_nr(zfail),
|
||||
_mesa_lookup_enum_by_nr(zpass));
|
||||
_mesa_enum_to_string(fail),
|
||||
_mesa_enum_to_string(zfail),
|
||||
_mesa_enum_to_string(zpass));
|
||||
|
||||
fop = 0;
|
||||
dfop = 0;
|
||||
|
|
@ -389,8 +389,8 @@ static void
|
|||
i830BlendEquationSeparate(struct gl_context * ctx, GLenum modeRGB, GLenum modeA)
|
||||
{
|
||||
DBG("%s -> %s, %s\n", __func__,
|
||||
_mesa_lookup_enum_by_nr(modeRGB),
|
||||
_mesa_lookup_enum_by_nr(modeA));
|
||||
_mesa_enum_to_string(modeRGB),
|
||||
_mesa_enum_to_string(modeA));
|
||||
|
||||
(void) modeRGB;
|
||||
(void) modeA;
|
||||
|
|
@ -403,10 +403,10 @@ i830BlendFuncSeparate(struct gl_context * ctx, GLenum sfactorRGB,
|
|||
GLenum dfactorRGB, GLenum sfactorA, GLenum dfactorA)
|
||||
{
|
||||
DBG("%s -> RGB(%s, %s) A(%s, %s)\n", __func__,
|
||||
_mesa_lookup_enum_by_nr(sfactorRGB),
|
||||
_mesa_lookup_enum_by_nr(dfactorRGB),
|
||||
_mesa_lookup_enum_by_nr(sfactorA),
|
||||
_mesa_lookup_enum_by_nr(dfactorA));
|
||||
_mesa_enum_to_string(sfactorRGB),
|
||||
_mesa_enum_to_string(dfactorRGB),
|
||||
_mesa_enum_to_string(sfactorA),
|
||||
_mesa_enum_to_string(dfactorA));
|
||||
|
||||
(void) sfactorRGB;
|
||||
(void) dfactorRGB;
|
||||
|
|
|
|||
|
|
@ -216,7 +216,7 @@ intel_alloc_private_renderbuffer_storage(struct gl_context * ctx, struct gl_rend
|
|||
intel_miptree_release(&irb->mt);
|
||||
|
||||
DBG("%s: %s: %s (%dx%d)\n", __func__,
|
||||
_mesa_lookup_enum_by_nr(internalFormat),
|
||||
_mesa_enum_to_string(internalFormat),
|
||||
_mesa_get_format_name(rb->Format), width, height);
|
||||
|
||||
if (width == 0 || height == 0)
|
||||
|
|
|
|||
|
|
@ -81,7 +81,7 @@ intel_miptree_create_layout(struct intel_context *intel,
|
|||
return NULL;
|
||||
|
||||
DBG("%s target %s format %s level %d..%d <-- %p\n", __func__,
|
||||
_mesa_lookup_enum_by_nr(target),
|
||||
_mesa_enum_to_string(target),
|
||||
_mesa_get_format_name(format),
|
||||
first_level, last_level, mt);
|
||||
|
||||
|
|
|
|||
|
|
@ -113,7 +113,7 @@ static void
|
|||
intelDmaPrimitive(struct intel_context *intel, GLenum prim)
|
||||
{
|
||||
if (0)
|
||||
fprintf(stderr, "%s %s\n", __func__, _mesa_lookup_enum_by_nr(prim));
|
||||
fprintf(stderr, "%s %s\n", __func__, _mesa_enum_to_string(prim));
|
||||
INTEL_FIREVERTICES(intel);
|
||||
intel->vtbl.reduced_primitive_state(intel, reduced_prim[prim]);
|
||||
intel_set_prim(intel, hw_prim[prim]);
|
||||
|
|
|
|||
|
|
@ -189,7 +189,7 @@ intelTexImage(struct gl_context * ctx,
|
|||
const struct gl_pixelstore_attrib *unpack)
|
||||
{
|
||||
DBG("%s target %s level %d %dx%dx%d\n", __func__,
|
||||
_mesa_lookup_enum_by_nr(texImage->TexObject->Target),
|
||||
_mesa_enum_to_string(texImage->TexObject->Target),
|
||||
texImage->Level, texImage->Width, texImage->Height, texImage->Depth);
|
||||
|
||||
/* Attempt to use the blitter for PBO image uploads.
|
||||
|
|
|
|||
|
|
@ -72,7 +72,7 @@ intel_blit_texsubimage(struct gl_context * ctx,
|
|||
|
||||
DBG("BLT subimage %s target %s level %d offset %d,%d %dx%d\n",
|
||||
__func__,
|
||||
_mesa_lookup_enum_by_nr(texImage->TexObject->Target),
|
||||
_mesa_enum_to_string(texImage->TexObject->Target),
|
||||
texImage->Level, xoffset, yoffset, width, height);
|
||||
|
||||
pixels = _mesa_validate_pbo_teximage(ctx, 2, width, height, 1,
|
||||
|
|
|
|||
|
|
@ -1134,7 +1134,7 @@ intelRasterPrimitive(struct gl_context * ctx, GLenum rprim, GLuint hwprim)
|
|||
|
||||
if (0)
|
||||
fprintf(stderr, "%s %s %x\n", __func__,
|
||||
_mesa_lookup_enum_by_nr(rprim), hwprim);
|
||||
_mesa_enum_to_string(rprim), hwprim);
|
||||
|
||||
intel->vtbl.reduced_primitive_state(intel, rprim);
|
||||
|
||||
|
|
@ -1158,7 +1158,7 @@ intelRenderPrimitive(struct gl_context * ctx, GLenum prim)
|
|||
ctx->Polygon.BackMode != GL_FILL);
|
||||
|
||||
if (0)
|
||||
fprintf(stderr, "%s %s\n", __func__, _mesa_lookup_enum_by_nr(prim));
|
||||
fprintf(stderr, "%s %s\n", __func__, _mesa_enum_to_string(prim));
|
||||
|
||||
/* Let some clipping routines know which primitive they're dealing
|
||||
* with.
|
||||
|
|
|
|||
|
|
@ -110,7 +110,7 @@ static void brw_set_prim(struct brw_context *brw,
|
|||
struct gl_context *ctx = &brw->ctx;
|
||||
uint32_t hw_prim = get_hw_prim_for_gl_prim(prim->mode);
|
||||
|
||||
DBG("PRIM: %s\n", _mesa_lookup_enum_by_nr(prim->mode));
|
||||
DBG("PRIM: %s\n", _mesa_enum_to_string(prim->mode));
|
||||
|
||||
/* Slight optimization to avoid the GS program when not needed:
|
||||
*/
|
||||
|
|
@ -143,7 +143,7 @@ static void gen6_set_prim(struct brw_context *brw,
|
|||
{
|
||||
uint32_t hw_prim;
|
||||
|
||||
DBG("PRIM: %s\n", _mesa_lookup_enum_by_nr(prim->mode));
|
||||
DBG("PRIM: %s\n", _mesa_enum_to_string(prim->mode));
|
||||
|
||||
hw_prim = get_hw_prim_for_gl_prim(prim->mode);
|
||||
|
||||
|
|
@ -182,7 +182,7 @@ static void brw_emit_prim(struct brw_context *brw,
|
|||
int indirect_flag;
|
||||
int predicate_enable;
|
||||
|
||||
DBG("PRIM: %s %d %d\n", _mesa_lookup_enum_by_nr(prim->mode),
|
||||
DBG("PRIM: %s %d %d\n", _mesa_enum_to_string(prim->mode),
|
||||
prim->start, prim->count);
|
||||
|
||||
int start_vertex_location = prim->start;
|
||||
|
|
@ -582,7 +582,7 @@ void brw_draw_prims( struct gl_context *ctx,
|
|||
*/
|
||||
if (ctx->RenderMode != GL_RENDER) {
|
||||
perf_debug("%s render mode not supported in hardware\n",
|
||||
_mesa_lookup_enum_by_nr(ctx->RenderMode));
|
||||
_mesa_enum_to_string(ctx->RenderMode));
|
||||
_swsetup_Wakeup(ctx);
|
||||
_tnl_wakeup(ctx);
|
||||
_tnl_draw_prims(ctx, prims, nr_prims, ib,
|
||||
|
|
|
|||
|
|
@ -230,7 +230,7 @@ brw_get_vertex_surface_type(struct brw_context *brw,
|
|||
|
||||
if (unlikely(INTEL_DEBUG & DEBUG_VERTS))
|
||||
fprintf(stderr, "type %s size %d normalized %d\n",
|
||||
_mesa_lookup_enum_by_nr(glarray->Type),
|
||||
_mesa_enum_to_string(glarray->Type),
|
||||
glarray->Size, glarray->Normalized);
|
||||
|
||||
if (glarray->Integer) {
|
||||
|
|
|
|||
|
|
@ -97,8 +97,8 @@ gen6_upload_blend_state(struct brw_context *brw)
|
|||
rb_type != GL_UNSIGNED_NORMALIZED &&
|
||||
rb_type != GL_FLOAT, "Ignoring %s logic op on %s "
|
||||
"renderbuffer\n",
|
||||
_mesa_lookup_enum_by_nr(ctx->Color.LogicOp),
|
||||
_mesa_lookup_enum_by_nr(rb_type));
|
||||
_mesa_enum_to_string(ctx->Color.LogicOp),
|
||||
_mesa_enum_to_string(rb_type));
|
||||
if (rb_type == GL_UNSIGNED_NORMALIZED) {
|
||||
blend[b].blend1.logic_op_enable = 1;
|
||||
blend[b].blend1.logic_op_func =
|
||||
|
|
|
|||
|
|
@ -310,7 +310,7 @@ intel_alloc_private_renderbuffer_storage(struct gl_context * ctx, struct gl_rend
|
|||
intel_miptree_release(&irb->mt);
|
||||
|
||||
DBG("%s: %s: %s (%dx%d)\n", __func__,
|
||||
_mesa_lookup_enum_by_nr(internalFormat),
|
||||
_mesa_enum_to_string(internalFormat),
|
||||
_mesa_get_format_name(rb->Format), width, height);
|
||||
|
||||
if (width == 0 || height == 0)
|
||||
|
|
|
|||
|
|
@ -279,7 +279,7 @@ intel_miptree_create_layout(struct brw_context *brw,
|
|||
return NULL;
|
||||
|
||||
DBG("%s target %s format %s level %d..%d slices %d <-- %p\n", __func__,
|
||||
_mesa_lookup_enum_by_nr(target),
|
||||
_mesa_enum_to_string(target),
|
||||
_mesa_get_format_name(format),
|
||||
first_level, last_level, depth0, mt);
|
||||
|
||||
|
|
|
|||
|
|
@ -97,8 +97,8 @@ intelTexImage(struct gl_context * ctx,
|
|||
|
||||
DBG("%s mesa_format %s target %s format %s type %s level %d %dx%dx%d\n",
|
||||
__func__, _mesa_get_format_name(texImage->TexFormat),
|
||||
_mesa_lookup_enum_by_nr(texImage->TexObject->Target),
|
||||
_mesa_lookup_enum_by_nr(format), _mesa_lookup_enum_by_nr(type),
|
||||
_mesa_enum_to_string(texImage->TexObject->Target),
|
||||
_mesa_enum_to_string(format), _mesa_enum_to_string(type),
|
||||
texImage->Level, texImage->Width, texImage->Height, texImage->Depth);
|
||||
|
||||
/* Allocate storage for texture data. */
|
||||
|
|
|
|||
|
|
@ -206,8 +206,8 @@ intelTexSubImage(struct gl_context * ctx,
|
|||
|
||||
DBG("%s mesa_format %s target %s format %s type %s level %d %dx%dx%d\n",
|
||||
__func__, _mesa_get_format_name(texImage->TexFormat),
|
||||
_mesa_lookup_enum_by_nr(texImage->TexObject->Target),
|
||||
_mesa_lookup_enum_by_nr(format), _mesa_lookup_enum_by_nr(type),
|
||||
_mesa_enum_to_string(texImage->TexObject->Target),
|
||||
_mesa_enum_to_string(format), _mesa_enum_to_string(type),
|
||||
texImage->Level, texImage->Width, texImage->Height, texImage->Depth);
|
||||
|
||||
ok = _mesa_meta_pbo_TexSubImage(ctx, dims, texImage,
|
||||
|
|
|
|||
|
|
@ -1669,7 +1669,7 @@ static void r200Enable( struct gl_context *ctx, GLenum cap, GLboolean state )
|
|||
|
||||
if ( R200_DEBUG & RADEON_STATE )
|
||||
fprintf( stderr, "%s( %s = %s )\n", __func__,
|
||||
_mesa_lookup_enum_by_nr( cap ),
|
||||
_mesa_enum_to_string( cap ),
|
||||
state ? "GL_TRUE" : "GL_FALSE" );
|
||||
|
||||
switch ( cap ) {
|
||||
|
|
|
|||
|
|
@ -68,9 +68,9 @@ static void r200SetTexWrap( radeonTexObjPtr t, GLenum swrap, GLenum twrap, GLenu
|
|||
radeon_print(RADEON_TEXTURE, RADEON_TRACE,
|
||||
"%s(tex %p) sw %s, tw %s, rw %s\n",
|
||||
__func__, t,
|
||||
_mesa_lookup_enum_by_nr(swrap),
|
||||
_mesa_lookup_enum_by_nr(twrap),
|
||||
_mesa_lookup_enum_by_nr(rwrap));
|
||||
_mesa_enum_to_string(swrap),
|
||||
_mesa_enum_to_string(twrap),
|
||||
_mesa_enum_to_string(rwrap));
|
||||
|
||||
t->pp_txfilter &= ~(R200_CLAMP_S_MASK | R200_CLAMP_T_MASK | R200_BORDER_MODE_D3D);
|
||||
|
||||
|
|
@ -225,8 +225,8 @@ static void r200SetTexFilter( radeonTexObjPtr t, GLenum minf, GLenum magf )
|
|||
radeon_print(RADEON_TEXTURE, RADEON_TRACE,
|
||||
"%s(tex %p) minf %s, maxf %s, anisotropy %d.\n",
|
||||
__func__, t,
|
||||
_mesa_lookup_enum_by_nr(minf),
|
||||
_mesa_lookup_enum_by_nr(magf),
|
||||
_mesa_enum_to_string(minf),
|
||||
_mesa_enum_to_string(magf),
|
||||
anisotropy);
|
||||
|
||||
if ( anisotropy == R200_MAX_ANISO_1_TO_1 ) {
|
||||
|
|
@ -302,7 +302,7 @@ static void r200TexEnv( struct gl_context *ctx, GLenum target,
|
|||
struct gl_texture_unit *texUnit = &ctx->Texture.Unit[unit];
|
||||
|
||||
radeon_print(RADEON_TEXTURE | RADEON_STATE, RADEON_VERBOSE, "%s( %s )\n",
|
||||
__func__, _mesa_lookup_enum_by_nr( pname ) );
|
||||
__func__, _mesa_enum_to_string( pname ) );
|
||||
|
||||
/* This is incorrect: Need to maintain this data for each of
|
||||
* GL_TEXTURE_{123}D, GL_TEXTURE_RECTANGLE_NV, etc, and switch
|
||||
|
|
@ -384,7 +384,7 @@ static void r200TexParameter( struct gl_context *ctx,
|
|||
radeon_print(RADEON_TEXTURE | RADEON_STATE, RADEON_VERBOSE,
|
||||
"%s(%p, tex %p) pname %s\n",
|
||||
__func__, ctx, texObj,
|
||||
_mesa_lookup_enum_by_nr( pname ) );
|
||||
_mesa_enum_to_string( pname ) );
|
||||
|
||||
switch ( pname ) {
|
||||
case GL_TEXTURE_MIN_FILTER:
|
||||
|
|
@ -415,7 +415,7 @@ static void r200DeleteTexture(struct gl_context * ctx, struct gl_texture_object
|
|||
radeon_print(RADEON_TEXTURE | RADEON_STATE, RADEON_NORMAL,
|
||||
"%s( %p (target = %s) )\n", __func__,
|
||||
(void *)texObj,
|
||||
_mesa_lookup_enum_by_nr(texObj->Target));
|
||||
_mesa_enum_to_string(texObj->Target));
|
||||
|
||||
if (rmesa) {
|
||||
int i;
|
||||
|
|
@ -473,7 +473,7 @@ static struct gl_texture_object *r200NewTextureObject(struct gl_context * ctx,
|
|||
radeon_print(RADEON_STATE | RADEON_TEXTURE, RADEON_NORMAL,
|
||||
"%s(%p) target %s, new texture %p.\n",
|
||||
__func__, ctx,
|
||||
_mesa_lookup_enum_by_nr(target), t);
|
||||
_mesa_enum_to_string(target), t);
|
||||
|
||||
_mesa_initialize_texture_object(ctx, &t->base, name, target);
|
||||
t->base.Sampler.MaxAnisotropy = rmesa->radeon.initialMaxAnisotropy;
|
||||
|
|
|
|||
|
|
@ -343,7 +343,7 @@ void radeonDrawBuffer( struct gl_context *ctx, GLenum mode )
|
|||
{
|
||||
if (RADEON_DEBUG & RADEON_DRI)
|
||||
fprintf(stderr, "%s %s\n", __func__,
|
||||
_mesa_lookup_enum_by_nr( mode ));
|
||||
_mesa_enum_to_string( mode ));
|
||||
|
||||
if (_mesa_is_winsys_fbo(ctx->DrawBuffer)) {
|
||||
radeonContextPtr radeon = RADEON_CONTEXT(ctx);
|
||||
|
|
|
|||
|
|
@ -700,7 +700,7 @@ radeon_bind_framebuffer(struct gl_context * ctx, GLenum target,
|
|||
radeon_print(RADEON_TEXTURE, RADEON_TRACE,
|
||||
"%s(%p, fb %p, target %s) \n",
|
||||
__func__, ctx, fb,
|
||||
_mesa_lookup_enum_by_nr(target));
|
||||
_mesa_enum_to_string(target));
|
||||
|
||||
if (target == GL_FRAMEBUFFER_EXT || target == GL_DRAW_FRAMEBUFFER_EXT) {
|
||||
radeon_draw_buffer(ctx, fb);
|
||||
|
|
|
|||
|
|
@ -276,7 +276,7 @@ static void calculate_min_max_lod(struct gl_sampler_object *samp, struct gl_text
|
|||
radeon_print(RADEON_TEXTURE, RADEON_TRACE,
|
||||
"%s(%p) target %s, min %d, max %d.\n",
|
||||
__func__, tObj,
|
||||
_mesa_lookup_enum_by_nr(tObj->Target),
|
||||
_mesa_enum_to_string(tObj->Target),
|
||||
minLod, maxLod);
|
||||
|
||||
/* save these values */
|
||||
|
|
|
|||
|
|
@ -212,7 +212,7 @@ radeonReadPixels(struct gl_context * ctx,
|
|||
*/
|
||||
radeon_print(RADEON_FALLBACKS, RADEON_NORMAL,
|
||||
"Falling back to sw for ReadPixels (format %s, type %s)\n",
|
||||
_mesa_lookup_enum_by_nr(format), _mesa_lookup_enum_by_nr(type));
|
||||
_mesa_enum_to_string(format), _mesa_enum_to_string(type));
|
||||
|
||||
if (ctx->NewState)
|
||||
_mesa_update_state(ctx);
|
||||
|
|
|
|||
|
|
@ -1452,7 +1452,7 @@ static void radeonEnable( struct gl_context *ctx, GLenum cap, GLboolean state )
|
|||
|
||||
if ( RADEON_DEBUG & RADEON_STATE )
|
||||
fprintf( stderr, "%s( %s = %s )\n", __func__,
|
||||
_mesa_lookup_enum_by_nr( cap ),
|
||||
_mesa_enum_to_string( cap ),
|
||||
state ? "GL_TRUE" : "GL_FALSE" );
|
||||
|
||||
switch ( cap ) {
|
||||
|
|
|
|||
|
|
@ -442,7 +442,7 @@ static GLboolean radeon_run_render( struct gl_context *ctx,
|
|||
|
||||
radeon_print(RADEON_SWRENDER, RADEON_NORMAL,
|
||||
"radeon_render.c: prim %s %d..%d\n",
|
||||
_mesa_lookup_enum_by_nr(prim & PRIM_MODE_MASK),
|
||||
_mesa_enum_to_string(prim & PRIM_MODE_MASK),
|
||||
start, start+length);
|
||||
|
||||
if (length)
|
||||
|
|
|
|||
|
|
@ -263,7 +263,7 @@ static void radeonTexEnv( struct gl_context *ctx, GLenum target,
|
|||
|
||||
if ( RADEON_DEBUG & RADEON_STATE ) {
|
||||
fprintf( stderr, "%s( %s )\n",
|
||||
__func__, _mesa_lookup_enum_by_nr( pname ) );
|
||||
__func__, _mesa_enum_to_string( pname ) );
|
||||
}
|
||||
|
||||
switch ( pname ) {
|
||||
|
|
@ -335,7 +335,7 @@ static void radeonTexParameter( struct gl_context *ctx,
|
|||
radeonTexObj* t = radeon_tex_obj(texObj);
|
||||
|
||||
radeon_print(RADEON_TEXTURE, RADEON_VERBOSE, "%s( %s )\n", __func__,
|
||||
_mesa_lookup_enum_by_nr( pname ) );
|
||||
_mesa_enum_to_string( pname ) );
|
||||
|
||||
switch ( pname ) {
|
||||
case GL_TEXTURE_BASE_LEVEL:
|
||||
|
|
@ -359,7 +359,7 @@ static void radeonDeleteTexture( struct gl_context *ctx,
|
|||
|
||||
radeon_print(RADEON_TEXTURE, RADEON_NORMAL,
|
||||
"%s( %p (target = %s) )\n", __func__, (void *)texObj,
|
||||
_mesa_lookup_enum_by_nr( texObj->Target ) );
|
||||
_mesa_enum_to_string( texObj->Target ) );
|
||||
|
||||
if ( rmesa ) {
|
||||
radeon_firevertices(&rmesa->radeon);
|
||||
|
|
|
|||
|
|
@ -279,8 +279,8 @@ mesa_format radeonChooseTextureFormat(struct gl_context * ctx,
|
|||
radeon_print(RADEON_TEXTURE, RADEON_TRACE,
|
||||
"%s InternalFormat=%s(%d) type=%s format=%s\n",
|
||||
__func__,
|
||||
_mesa_lookup_enum_by_nr(internalFormat), internalFormat,
|
||||
_mesa_lookup_enum_by_nr(type), _mesa_lookup_enum_by_nr(format));
|
||||
_mesa_enum_to_string(internalFormat), internalFormat,
|
||||
_mesa_enum_to_string(type), _mesa_enum_to_string(format));
|
||||
radeon_print(RADEON_TEXTURE, RADEON_TRACE,
|
||||
"%s do32bpt=%d force16bpt=%d\n",
|
||||
__func__, do32bpt, force16bpt);
|
||||
|
|
|
|||
|
|
@ -291,7 +291,7 @@ valid_elements_type(struct gl_context *ctx, GLenum type, const char *name)
|
|||
|
||||
default:
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "%s(type = %s)", name,
|
||||
_mesa_lookup_enum_by_nr(type));
|
||||
_mesa_enum_to_string(type));
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -132,21 +132,21 @@ static void debug_op(GLint optype, GLuint arg_count, GLenum op, GLuint dst,
|
|||
|
||||
op_name = atifs_ops[(arg_count-1)+(optype?3:0)];
|
||||
|
||||
fprintf(stderr, "%s(%s, %s", op_name, _mesa_lookup_enum_by_nr(op),
|
||||
_mesa_lookup_enum_by_nr(dst));
|
||||
fprintf(stderr, "%s(%s, %s", op_name, _mesa_enum_to_string(op),
|
||||
_mesa_enum_to_string(dst));
|
||||
if (!optype)
|
||||
fprintf(stderr, ", %d", dstMask);
|
||||
|
||||
fprintf(stderr, ", %s", create_dst_mod_str(dstMod));
|
||||
|
||||
fprintf(stderr, ", %s, %s, %d", _mesa_lookup_enum_by_nr(arg1),
|
||||
_mesa_lookup_enum_by_nr(arg1Rep), arg1Mod);
|
||||
fprintf(stderr, ", %s, %s, %d", _mesa_enum_to_string(arg1),
|
||||
_mesa_enum_to_string(arg1Rep), arg1Mod);
|
||||
if (arg_count>1)
|
||||
fprintf(stderr, ", %s, %s, %d", _mesa_lookup_enum_by_nr(arg2),
|
||||
_mesa_lookup_enum_by_nr(arg2Rep), arg2Mod);
|
||||
fprintf(stderr, ", %s, %s, %d", _mesa_enum_to_string(arg2),
|
||||
_mesa_enum_to_string(arg2Rep), arg2Mod);
|
||||
if (arg_count>2)
|
||||
fprintf(stderr, ", %s, %s, %d", _mesa_lookup_enum_by_nr(arg3),
|
||||
_mesa_lookup_enum_by_nr(arg3Rep), arg3Mod);
|
||||
fprintf(stderr, ", %s, %s, %d", _mesa_enum_to_string(arg3),
|
||||
_mesa_enum_to_string(arg3Rep), arg3Mod);
|
||||
|
||||
fprintf(stderr,")\n");
|
||||
|
||||
|
|
@ -383,7 +383,7 @@ _mesa_EndFragmentShaderATI(void)
|
|||
for (j = 0; j < MAX_NUM_PASSES_ATI; j++) {
|
||||
for (i = 0; i < MAX_NUM_FRAGMENT_REGISTERS_ATI; i++) {
|
||||
GLuint op = curProg->SetupInst[j][i].Opcode;
|
||||
const char *op_enum = op > 5 ? _mesa_lookup_enum_by_nr(op) : "0";
|
||||
const char *op_enum = op > 5 ? _mesa_enum_to_string(op) : "0";
|
||||
GLuint src = curProg->SetupInst[j][i].src;
|
||||
GLuint swizzle = curProg->SetupInst[j][i].swizzle;
|
||||
fprintf(stderr, "%2d %04X %s %d %04X\n", i, op, op_enum, src,
|
||||
|
|
@ -392,8 +392,8 @@ _mesa_EndFragmentShaderATI(void)
|
|||
for (i = 0; i < curProg->numArithInstr[j]; i++) {
|
||||
GLuint op0 = curProg->Instructions[j][i].Opcode[0];
|
||||
GLuint op1 = curProg->Instructions[j][i].Opcode[1];
|
||||
const char *op0_enum = op0 > 5 ? _mesa_lookup_enum_by_nr(op0) : "0";
|
||||
const char *op1_enum = op1 > 5 ? _mesa_lookup_enum_by_nr(op1) : "0";
|
||||
const char *op0_enum = op0 > 5 ? _mesa_enum_to_string(op0) : "0";
|
||||
const char *op1_enum = op1 > 5 ? _mesa_enum_to_string(op1) : "0";
|
||||
GLuint count0 = curProg->Instructions[j][i].ArgCount[0];
|
||||
GLuint count1 = curProg->Instructions[j][i].ArgCount[1];
|
||||
fprintf(stderr, "%2d %04X %s %d %04X %s %d\n", i, op0, op0_enum, count0,
|
||||
|
|
@ -477,8 +477,8 @@ _mesa_PassTexCoordATI(GLuint dst, GLuint coord, GLenum swizzle)
|
|||
|
||||
#if MESA_DEBUG_ATI_FS
|
||||
_mesa_debug(ctx, "%s(%s, %s, %s)\n", __func__,
|
||||
_mesa_lookup_enum_by_nr(dst), _mesa_lookup_enum_by_nr(coord),
|
||||
_mesa_lookup_enum_by_nr(swizzle));
|
||||
_mesa_enum_to_string(dst), _mesa_enum_to_string(coord),
|
||||
_mesa_enum_to_string(swizzle));
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
@ -550,8 +550,8 @@ _mesa_SampleMapATI(GLuint dst, GLuint interp, GLenum swizzle)
|
|||
|
||||
#if MESA_DEBUG_ATI_FS
|
||||
_mesa_debug(ctx, "%s(%s, %s, %s)\n", __func__,
|
||||
_mesa_lookup_enum_by_nr(dst), _mesa_lookup_enum_by_nr(interp),
|
||||
_mesa_lookup_enum_by_nr(swizzle));
|
||||
_mesa_enum_to_string(dst), _mesa_enum_to_string(interp),
|
||||
_mesa_enum_to_string(swizzle));
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -937,7 +937,7 @@ _mesa_PopAttrib(void)
|
|||
|
||||
if (MESA_VERBOSE & VERBOSE_API) {
|
||||
_mesa_debug(ctx, "glPopAttrib %s\n",
|
||||
_mesa_lookup_enum_by_nr(attr->kind));
|
||||
_mesa_enum_to_string(attr->kind));
|
||||
}
|
||||
|
||||
switch (attr->kind) {
|
||||
|
|
|
|||
|
|
@ -128,28 +128,28 @@ validate_blend_factors(struct gl_context *ctx, const char *func,
|
|||
if (!legal_src_factor(ctx, sfactorRGB)) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM,
|
||||
"%s(sfactorRGB = %s)", func,
|
||||
_mesa_lookup_enum_by_nr(sfactorRGB));
|
||||
_mesa_enum_to_string(sfactorRGB));
|
||||
return GL_FALSE;
|
||||
}
|
||||
|
||||
if (!legal_dst_factor(ctx, dfactorRGB)) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM,
|
||||
"%s(dfactorRGB = %s)", func,
|
||||
_mesa_lookup_enum_by_nr(dfactorRGB));
|
||||
_mesa_enum_to_string(dfactorRGB));
|
||||
return GL_FALSE;
|
||||
}
|
||||
|
||||
if (sfactorA != sfactorRGB && !legal_src_factor(ctx, sfactorA)) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM,
|
||||
"%s(sfactorA = %s)", func,
|
||||
_mesa_lookup_enum_by_nr(sfactorA));
|
||||
_mesa_enum_to_string(sfactorA));
|
||||
return GL_FALSE;
|
||||
}
|
||||
|
||||
if (dfactorA != dfactorRGB && !legal_dst_factor(ctx, dfactorA)) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM,
|
||||
"%s(dfactorA = %s)", func,
|
||||
_mesa_lookup_enum_by_nr(dfactorA));
|
||||
_mesa_enum_to_string(dfactorA));
|
||||
return GL_FALSE;
|
||||
}
|
||||
|
||||
|
|
@ -208,10 +208,10 @@ _mesa_BlendFuncSeparate( GLenum sfactorRGB, GLenum dfactorRGB,
|
|||
|
||||
if (MESA_VERBOSE & VERBOSE_API)
|
||||
_mesa_debug(ctx, "glBlendFuncSeparate %s %s %s %s\n",
|
||||
_mesa_lookup_enum_by_nr(sfactorRGB),
|
||||
_mesa_lookup_enum_by_nr(dfactorRGB),
|
||||
_mesa_lookup_enum_by_nr(sfactorA),
|
||||
_mesa_lookup_enum_by_nr(dfactorA));
|
||||
_mesa_enum_to_string(sfactorRGB),
|
||||
_mesa_enum_to_string(dfactorRGB),
|
||||
_mesa_enum_to_string(sfactorA),
|
||||
_mesa_enum_to_string(dfactorA));
|
||||
|
||||
if (!validate_blend_factors(ctx, "glBlendFuncSeparate",
|
||||
sfactorRGB, dfactorRGB,
|
||||
|
|
@ -342,7 +342,7 @@ _mesa_BlendEquation( GLenum mode )
|
|||
|
||||
if (MESA_VERBOSE & VERBOSE_API)
|
||||
_mesa_debug(ctx, "glBlendEquation(%s)\n",
|
||||
_mesa_lookup_enum_by_nr(mode));
|
||||
_mesa_enum_to_string(mode));
|
||||
|
||||
if (!legal_blend_equation(ctx, mode)) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "glBlendEquation");
|
||||
|
|
@ -385,7 +385,7 @@ _mesa_BlendEquationiARB(GLuint buf, GLenum mode)
|
|||
|
||||
if (MESA_VERBOSE & VERBOSE_API)
|
||||
_mesa_debug(ctx, "glBlendEquationi(%u, %s)\n",
|
||||
buf, _mesa_lookup_enum_by_nr(mode));
|
||||
buf, _mesa_enum_to_string(mode));
|
||||
|
||||
if (buf >= ctx->Const.MaxDrawBuffers) {
|
||||
_mesa_error(ctx, GL_INVALID_VALUE, "glBlendFuncSeparatei(buffer=%u)",
|
||||
|
|
@ -421,8 +421,8 @@ _mesa_BlendEquationSeparate( GLenum modeRGB, GLenum modeA )
|
|||
|
||||
if (MESA_VERBOSE & VERBOSE_API)
|
||||
_mesa_debug(ctx, "glBlendEquationSeparateEXT(%s %s)\n",
|
||||
_mesa_lookup_enum_by_nr(modeRGB),
|
||||
_mesa_lookup_enum_by_nr(modeA));
|
||||
_mesa_enum_to_string(modeRGB),
|
||||
_mesa_enum_to_string(modeA));
|
||||
|
||||
if ( (modeRGB != modeA) && !ctx->Extensions.EXT_blend_equation_separate ) {
|
||||
_mesa_error(ctx, GL_INVALID_OPERATION,
|
||||
|
|
@ -476,8 +476,8 @@ _mesa_BlendEquationSeparateiARB(GLuint buf, GLenum modeRGB, GLenum modeA)
|
|||
|
||||
if (MESA_VERBOSE & VERBOSE_API)
|
||||
_mesa_debug(ctx, "glBlendEquationSeparatei(%u, %s %s)\n", buf,
|
||||
_mesa_lookup_enum_by_nr(modeRGB),
|
||||
_mesa_lookup_enum_by_nr(modeA));
|
||||
_mesa_enum_to_string(modeRGB),
|
||||
_mesa_enum_to_string(modeA));
|
||||
|
||||
if (buf >= ctx->Const.MaxDrawBuffers) {
|
||||
_mesa_error(ctx, GL_INVALID_VALUE, "glBlendEquationSeparatei(buffer=%u)",
|
||||
|
|
@ -567,7 +567,7 @@ _mesa_AlphaFunc( GLenum func, GLclampf ref )
|
|||
|
||||
if (MESA_VERBOSE & VERBOSE_API)
|
||||
_mesa_debug(ctx, "glAlphaFunc(%s, %f)\n",
|
||||
_mesa_lookup_enum_by_nr(func), ref);
|
||||
_mesa_enum_to_string(func), ref);
|
||||
|
||||
switch (func) {
|
||||
case GL_NEVER:
|
||||
|
|
@ -613,7 +613,7 @@ _mesa_LogicOp( GLenum opcode )
|
|||
GET_CURRENT_CONTEXT(ctx);
|
||||
|
||||
if (MESA_VERBOSE & VERBOSE_API)
|
||||
_mesa_debug(ctx, "glLogicOp(%s)\n", _mesa_lookup_enum_by_nr(opcode));
|
||||
_mesa_debug(ctx, "glLogicOp(%s)\n", _mesa_enum_to_string(opcode));
|
||||
|
||||
switch (opcode) {
|
||||
case GL_CLEAR:
|
||||
|
|
@ -790,7 +790,7 @@ _mesa_ClampColor(GLenum target, GLenum clamp)
|
|||
|
||||
invalid_enum:
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "glClampColor(%s)",
|
||||
_mesa_lookup_enum_by_nr(target));
|
||||
_mesa_enum_to_string(target));
|
||||
}
|
||||
|
||||
static GLboolean
|
||||
|
|
|
|||
|
|
@ -212,7 +212,7 @@ _mesa_blit_framebuffer(struct gl_context *ctx,
|
|||
|
||||
if (!is_valid_blit_filter(ctx, filter)) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "%s(invalid filter %s)", func,
|
||||
_mesa_lookup_enum_by_nr(filter));
|
||||
_mesa_enum_to_string(filter));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -220,7 +220,7 @@ _mesa_blit_framebuffer(struct gl_context *ctx,
|
|||
filter == GL_SCALED_RESOLVE_NICEST_EXT) &&
|
||||
(readFb->Visual.samples == 0 || drawFb->Visual.samples > 0)) {
|
||||
_mesa_error(ctx, GL_INVALID_OPERATION, "%s(%s: invalid samples)", func,
|
||||
_mesa_lookup_enum_by_nr(filter));
|
||||
_mesa_enum_to_string(filter));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -548,7 +548,7 @@ _mesa_BlitFramebuffer(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
|
|||
" %d, %d, %d, %d, 0x%x, %s)\n",
|
||||
srcX0, srcY0, srcX1, srcY1,
|
||||
dstX0, dstY0, dstX1, dstY1,
|
||||
mask, _mesa_lookup_enum_by_nr(filter));
|
||||
mask, _mesa_enum_to_string(filter));
|
||||
|
||||
_mesa_blit_framebuffer(ctx, ctx->ReadBuffer, ctx->DrawBuffer,
|
||||
srcX0, srcY0, srcX1, srcY1,
|
||||
|
|
@ -573,7 +573,7 @@ _mesa_BlitNamedFramebuffer(GLuint readFramebuffer, GLuint drawFramebuffer,
|
|||
readFramebuffer, drawFramebuffer,
|
||||
srcX0, srcY0, srcX1, srcY1,
|
||||
dstX0, dstY0, dstX1, dstY1,
|
||||
mask, _mesa_lookup_enum_by_nr(filter));
|
||||
mask, _mesa_enum_to_string(filter));
|
||||
|
||||
/*
|
||||
* According to PDF page 533 of the OpenGL 4.5 core spec (30.10.2014,
|
||||
|
|
|
|||
|
|
@ -1182,7 +1182,7 @@ _mesa_BindBuffer(GLenum target, GLuint buffer)
|
|||
|
||||
if (MESA_VERBOSE & VERBOSE_API)
|
||||
_mesa_debug(ctx, "glBindBuffer(%s, %u)\n",
|
||||
_mesa_lookup_enum_by_nr(target), buffer);
|
||||
_mesa_enum_to_string(target), buffer);
|
||||
|
||||
bind_buffer_object(ctx, target, buffer);
|
||||
}
|
||||
|
|
@ -1535,9 +1535,9 @@ _mesa_buffer_data(struct gl_context *ctx, struct gl_buffer_object *bufObj,
|
|||
if (MESA_VERBOSE & VERBOSE_API)
|
||||
_mesa_debug(ctx, "%s(%s, %ld, %p, %s)\n",
|
||||
func,
|
||||
_mesa_lookup_enum_by_nr(target),
|
||||
_mesa_enum_to_string(target),
|
||||
(long int) size, data,
|
||||
_mesa_lookup_enum_by_nr(usage));
|
||||
_mesa_enum_to_string(usage));
|
||||
|
||||
if (size < 0) {
|
||||
_mesa_error(ctx, GL_INVALID_VALUE, "%s(size < 0)", func);
|
||||
|
|
@ -1570,7 +1570,7 @@ _mesa_buffer_data(struct gl_context *ctx, struct gl_buffer_object *bufObj,
|
|||
|
||||
if (!valid_usage) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "%s(invalid usage: %s)", func,
|
||||
_mesa_lookup_enum_by_nr(usage));
|
||||
_mesa_enum_to_string(usage));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -2025,7 +2025,7 @@ get_buffer_parameter(struct gl_context *ctx,
|
|||
|
||||
invalid_pname:
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "%s(invalid pname: %s)", func,
|
||||
_mesa_lookup_enum_by_nr(pname));
|
||||
_mesa_enum_to_string(pname));
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
@ -4367,7 +4367,7 @@ _mesa_BindBuffersRange(GLenum target, GLuint first, GLsizei count,
|
|||
return;
|
||||
default:
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "glBindBuffersRange(target=%s)",
|
||||
_mesa_lookup_enum_by_nr(target));
|
||||
_mesa_enum_to_string(target));
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
@ -4393,7 +4393,7 @@ _mesa_BindBuffersBase(GLenum target, GLuint first, GLsizei count,
|
|||
return;
|
||||
default:
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "glBindBuffersBase(target=%s)",
|
||||
_mesa_lookup_enum_by_nr(target));
|
||||
_mesa_enum_to_string(target));
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -251,7 +251,7 @@ _mesa_draw_buffer(struct gl_context *ctx, struct gl_framebuffer *fb,
|
|||
FLUSH_VERTICES(ctx, 0);
|
||||
|
||||
if (MESA_VERBOSE & VERBOSE_API) {
|
||||
_mesa_debug(ctx, "%s %s\n", caller, _mesa_lookup_enum_by_nr(buffer));
|
||||
_mesa_debug(ctx, "%s %s\n", caller, _mesa_enum_to_string(buffer));
|
||||
}
|
||||
|
||||
if (buffer == GL_NONE) {
|
||||
|
|
@ -264,14 +264,14 @@ _mesa_draw_buffer(struct gl_context *ctx, struct gl_framebuffer *fb,
|
|||
if (destMask == BAD_MASK) {
|
||||
/* totally bogus buffer */
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "%s(invalid buffer %s)", caller,
|
||||
_mesa_lookup_enum_by_nr(buffer));
|
||||
_mesa_enum_to_string(buffer));
|
||||
return;
|
||||
}
|
||||
destMask &= supportedMask;
|
||||
if (destMask == 0x0) {
|
||||
/* none of the named color buffers exist! */
|
||||
_mesa_error(ctx, GL_INVALID_OPERATION, "%s(invalid buffer %s)",
|
||||
caller, _mesa_lookup_enum_by_nr(buffer));
|
||||
caller, _mesa_enum_to_string(buffer));
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
|
@ -411,7 +411,7 @@ _mesa_draw_buffers(struct gl_context *ctx, struct gl_framebuffer *fb,
|
|||
*/
|
||||
if (destMask[output] == BAD_MASK) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "%s(invalid buffer %s)",
|
||||
caller, _mesa_lookup_enum_by_nr(buffers[output]));
|
||||
caller, _mesa_enum_to_string(buffers[output]));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -427,7 +427,7 @@ _mesa_draw_buffers(struct gl_context *ctx, struct gl_framebuffer *fb,
|
|||
*/
|
||||
if (_mesa_bitcount(destMask[output]) > 1) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "%s(invalid buffer %s)",
|
||||
caller, _mesa_lookup_enum_by_nr(buffers[output]));
|
||||
caller, _mesa_enum_to_string(buffers[output]));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -445,7 +445,7 @@ _mesa_draw_buffers(struct gl_context *ctx, struct gl_framebuffer *fb,
|
|||
if (destMask[output] == 0) {
|
||||
_mesa_error(ctx, GL_INVALID_OPERATION,
|
||||
"%s(unsupported buffer %s)",
|
||||
caller, _mesa_lookup_enum_by_nr(buffers[output]));
|
||||
caller, _mesa_enum_to_string(buffers[output]));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -459,7 +459,7 @@ _mesa_draw_buffers(struct gl_context *ctx, struct gl_framebuffer *fb,
|
|||
buffers[output] != GL_COLOR_ATTACHMENT0 + output) {
|
||||
_mesa_error(ctx, GL_INVALID_OPERATION,
|
||||
"%s(unsupported buffer %s)",
|
||||
caller, _mesa_lookup_enum_by_nr(buffers[output]));
|
||||
caller, _mesa_enum_to_string(buffers[output]));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -471,7 +471,7 @@ _mesa_draw_buffers(struct gl_context *ctx, struct gl_framebuffer *fb,
|
|||
if (destMask[output] & usedBufferMask) {
|
||||
_mesa_error(ctx, GL_INVALID_OPERATION,
|
||||
"%s(duplicated buffer %s)",
|
||||
caller, _mesa_lookup_enum_by_nr(buffers[output]));
|
||||
caller, _mesa_enum_to_string(buffers[output]));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -700,7 +700,7 @@ _mesa_read_buffer(struct gl_context *ctx, struct gl_framebuffer *fb,
|
|||
FLUSH_VERTICES(ctx, 0);
|
||||
|
||||
if (MESA_VERBOSE & VERBOSE_API)
|
||||
_mesa_debug(ctx, "%s %s\n", caller, _mesa_lookup_enum_by_nr(buffer));
|
||||
_mesa_debug(ctx, "%s %s\n", caller, _mesa_enum_to_string(buffer));
|
||||
|
||||
if (buffer == GL_NONE) {
|
||||
/* This is legal--it means that no buffer should be bound for reading. */
|
||||
|
|
@ -712,14 +712,14 @@ _mesa_read_buffer(struct gl_context *ctx, struct gl_framebuffer *fb,
|
|||
if (srcBuffer == -1) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM,
|
||||
"%s(invalid buffer %s)", caller,
|
||||
_mesa_lookup_enum_by_nr(buffer));
|
||||
_mesa_enum_to_string(buffer));
|
||||
return;
|
||||
}
|
||||
supportedMask = supported_buffer_bitmask(ctx, fb);
|
||||
if (((1 << srcBuffer) & supportedMask) == 0) {
|
||||
_mesa_error(ctx, GL_INVALID_OPERATION,
|
||||
"%s(invalid buffer %s)", caller,
|
||||
_mesa_lookup_enum_by_nr(buffer));
|
||||
_mesa_enum_to_string(buffer));
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -395,7 +395,7 @@ _mesa_ClearBufferiv(GLenum buffer, GLint drawbuffer, const GLint *value)
|
|||
return;
|
||||
default:
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "glClearBufferiv(buffer=%s)",
|
||||
_mesa_lookup_enum_by_nr(buffer));
|
||||
_mesa_enum_to_string(buffer));
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
|
@ -485,7 +485,7 @@ _mesa_ClearBufferuiv(GLenum buffer, GLint drawbuffer, const GLuint *value)
|
|||
return;
|
||||
default:
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "glClearBufferuiv(buffer=%s)",
|
||||
_mesa_lookup_enum_by_nr(buffer));
|
||||
_mesa_enum_to_string(buffer));
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
|
@ -596,7 +596,7 @@ _mesa_ClearBufferfv(GLenum buffer, GLint drawbuffer, const GLfloat *value)
|
|||
return;
|
||||
default:
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "glClearBufferfv(buffer=%s)",
|
||||
_mesa_lookup_enum_by_nr(buffer));
|
||||
_mesa_enum_to_string(buffer));
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
|
@ -636,7 +636,7 @@ _mesa_ClearBufferfi(GLenum buffer, GLint drawbuffer,
|
|||
|
||||
if (buffer != GL_DEPTH_STENCIL) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "glClearBufferfi(buffer=%s)",
|
||||
_mesa_lookup_enum_by_nr(buffer));
|
||||
_mesa_enum_to_string(buffer));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -87,7 +87,7 @@ _mesa_BeginConditionalRender(GLuint queryId, GLenum mode)
|
|||
/* fallthrough - invalid */
|
||||
default:
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "glBeginConditionalRender(mode=%s)",
|
||||
_mesa_lookup_enum_by_nr(mode));
|
||||
_mesa_enum_to_string(mode));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -184,7 +184,7 @@ _mesa_check_conditional_render(struct gl_context *ctx)
|
|||
default:
|
||||
_mesa_problem(ctx, "Bad cond render mode %s in "
|
||||
" _mesa_check_conditional_render()",
|
||||
_mesa_lookup_enum_by_nr(ctx->Query.CondRenderMode));
|
||||
_mesa_enum_to_string(ctx->Query.CondRenderMode));
|
||||
return GL_TRUE;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -93,7 +93,7 @@ prepare_target(struct gl_context *ctx, GLuint name, GLenum *target, int level,
|
|||
default:
|
||||
_mesa_error(ctx, GL_INVALID_ENUM,
|
||||
"glCopyImageSubData(%sTarget = %s)", dbg_prefix,
|
||||
_mesa_lookup_enum_by_nr(*target));
|
||||
_mesa_enum_to_string(*target));
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
@ -159,7 +159,7 @@ prepare_target(struct gl_context *ctx, GLuint name, GLenum *target, int level,
|
|||
if ((*tex_obj)->Target != *target) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM,
|
||||
"glCopyImageSubData(%sTarget = %s)", dbg_prefix,
|
||||
_mesa_lookup_enum_by_nr(*target));
|
||||
_mesa_enum_to_string(*target));
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
@ -416,9 +416,9 @@ _mesa_CopyImageSubData(GLuint srcName, GLenum srcTarget, GLint srcLevel,
|
|||
_mesa_debug(ctx, "glCopyImageSubData(%u, %s, %d, %d, %d, %d, "
|
||||
"%u, %s, %d, %d, %d, %d, "
|
||||
"%d, %d, %d)\n",
|
||||
srcName, _mesa_lookup_enum_by_nr(srcTarget), srcLevel,
|
||||
srcName, _mesa_enum_to_string(srcTarget), srcLevel,
|
||||
srcX, srcY, srcZ,
|
||||
dstName, _mesa_lookup_enum_by_nr(dstTarget), dstLevel,
|
||||
dstName, _mesa_enum_to_string(dstTarget), dstLevel,
|
||||
dstX, dstY, dstZ,
|
||||
srcWidth, srcHeight, srcWidth);
|
||||
|
||||
|
|
|
|||
|
|
@ -411,7 +411,7 @@ dump_renderbuffer(const struct gl_renderbuffer *rb, GLboolean writeImage)
|
|||
{
|
||||
printf("Renderbuffer %u: %u x %u IntFormat = %s\n",
|
||||
rb->Name, rb->Width, rb->Height,
|
||||
_mesa_lookup_enum_by_nr(rb->InternalFormat));
|
||||
_mesa_enum_to_string(rb->InternalFormat));
|
||||
if (writeImage) {
|
||||
_mesa_write_renderbuffer_image(rb);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -63,7 +63,7 @@ _mesa_DepthFunc( GLenum func )
|
|||
GET_CURRENT_CONTEXT(ctx);
|
||||
|
||||
if (MESA_VERBOSE & VERBOSE_API)
|
||||
_mesa_debug(ctx, "glDepthFunc %s\n", _mesa_lookup_enum_by_nr(func));
|
||||
_mesa_debug(ctx, "glDepthFunc %s\n", _mesa_enum_to_string(func));
|
||||
|
||||
if (ctx->Depth.Func == func)
|
||||
return;
|
||||
|
|
|
|||
|
|
@ -9000,7 +9000,7 @@ _mesa_NewList(GLuint name, GLenum mode)
|
|||
|
||||
if (MESA_VERBOSE & VERBOSE_API)
|
||||
_mesa_debug(ctx, "glNewList %u %s\n", name,
|
||||
_mesa_lookup_enum_by_nr(mode));
|
||||
_mesa_enum_to_string(mode));
|
||||
|
||||
if (name == 0) {
|
||||
_mesa_error(ctx, GL_INVALID_VALUE, "glNewList");
|
||||
|
|
@ -9688,7 +9688,7 @@ _mesa_initialize_save_table(const struct gl_context *ctx)
|
|||
static const char *
|
||||
enum_string(GLenum k)
|
||||
{
|
||||
return _mesa_lookup_enum_by_nr(k);
|
||||
return _mesa_enum_to_string(k);
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -9827,19 +9827,19 @@ print_list(struct gl_context *ctx, GLuint list, const char *fname)
|
|||
break;
|
||||
case OPCODE_BIND_TEXTURE:
|
||||
fprintf(f, "BindTexture %s %d\n",
|
||||
_mesa_lookup_enum_by_nr(n[1].ui), n[2].ui);
|
||||
_mesa_enum_to_string(n[1].ui), n[2].ui);
|
||||
break;
|
||||
case OPCODE_SHADE_MODEL:
|
||||
fprintf(f, "ShadeModel %s\n", _mesa_lookup_enum_by_nr(n[1].ui));
|
||||
fprintf(f, "ShadeModel %s\n", _mesa_enum_to_string(n[1].ui));
|
||||
break;
|
||||
case OPCODE_MAP1:
|
||||
fprintf(f, "Map1 %s %.3f %.3f %d %d\n",
|
||||
_mesa_lookup_enum_by_nr(n[1].ui),
|
||||
_mesa_enum_to_string(n[1].ui),
|
||||
n[2].f, n[3].f, n[4].i, n[5].i);
|
||||
break;
|
||||
case OPCODE_MAP2:
|
||||
fprintf(f, "Map2 %s %.3f %.3f %.3f %.3f %d %d %d %d\n",
|
||||
_mesa_lookup_enum_by_nr(n[1].ui),
|
||||
_mesa_enum_to_string(n[1].ui),
|
||||
n[2].f, n[3].f, n[4].f, n[5].f,
|
||||
n[6].i, n[7].i, n[8].i, n[9].i);
|
||||
break;
|
||||
|
|
@ -9918,7 +9918,7 @@ print_list(struct gl_context *ctx, GLuint list, const char *fname)
|
|||
|
||||
case OPCODE_PROVOKING_VERTEX:
|
||||
fprintf(f, "ProvokingVertex %s\n",
|
||||
_mesa_lookup_enum_by_nr(n[1].ui));
|
||||
_mesa_enum_to_string(n[1].ui));
|
||||
break;
|
||||
|
||||
/*
|
||||
|
|
|
|||
|
|
@ -53,10 +53,10 @@ _mesa_DrawPixels( GLsizei width, GLsizei height,
|
|||
if (MESA_VERBOSE & VERBOSE_API)
|
||||
_mesa_debug(ctx, "glDrawPixels(%d, %d, %s, %s, %p) // to %s at %d, %d\n",
|
||||
width, height,
|
||||
_mesa_lookup_enum_by_nr(format),
|
||||
_mesa_lookup_enum_by_nr(type),
|
||||
_mesa_enum_to_string(format),
|
||||
_mesa_enum_to_string(type),
|
||||
pixels,
|
||||
_mesa_lookup_enum_by_nr(ctx->DrawBuffer->ColorDrawBuffer[0]),
|
||||
_mesa_enum_to_string(ctx->DrawBuffer->ColorDrawBuffer[0]),
|
||||
IROUND(ctx->Current.RasterPos[0]),
|
||||
IROUND(ctx->Current.RasterPos[1]));
|
||||
|
||||
|
|
@ -96,8 +96,8 @@ _mesa_DrawPixels( GLsizei width, GLsizei height,
|
|||
err = _mesa_error_check_format_and_type(ctx, format, type);
|
||||
if (err != GL_NO_ERROR) {
|
||||
_mesa_error(ctx, err, "glDrawPixels(invalid format %s and/or type %s)",
|
||||
_mesa_lookup_enum_by_nr(format),
|
||||
_mesa_lookup_enum_by_nr(type));
|
||||
_mesa_enum_to_string(format),
|
||||
_mesa_enum_to_string(type));
|
||||
goto end;
|
||||
}
|
||||
|
||||
|
|
@ -198,9 +198,9 @@ _mesa_CopyPixels( GLint srcx, GLint srcy, GLsizei width, GLsizei height,
|
|||
_mesa_debug(ctx,
|
||||
"glCopyPixels(%d, %d, %d, %d, %s) // from %s to %s at %d, %d\n",
|
||||
srcx, srcy, width, height,
|
||||
_mesa_lookup_enum_by_nr(type),
|
||||
_mesa_lookup_enum_by_nr(ctx->ReadBuffer->ColorReadBuffer),
|
||||
_mesa_lookup_enum_by_nr(ctx->DrawBuffer->ColorDrawBuffer[0]),
|
||||
_mesa_enum_to_string(type),
|
||||
_mesa_enum_to_string(ctx->ReadBuffer->ColorReadBuffer),
|
||||
_mesa_enum_to_string(ctx->DrawBuffer->ColorDrawBuffer[0]),
|
||||
IROUND(ctx->Current.RasterPos[0]),
|
||||
IROUND(ctx->Current.RasterPos[1]));
|
||||
|
||||
|
|
@ -218,7 +218,7 @@ _mesa_CopyPixels( GLint srcx, GLint srcy, GLsizei width, GLsizei height,
|
|||
type != GL_STENCIL &&
|
||||
type != GL_DEPTH_STENCIL) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "glCopyPixels(type=%s)",
|
||||
_mesa_lookup_enum_by_nr(type));
|
||||
_mesa_enum_to_string(type));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -146,7 +146,7 @@ client_state(struct gl_context *ctx, GLenum cap, GLboolean state)
|
|||
|
||||
invalid_enum_error:
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "gl%sClientState(%s)",
|
||||
state ? "Enable" : "Disable", _mesa_lookup_enum_by_nr(cap));
|
||||
state ? "Enable" : "Disable", _mesa_enum_to_string(cap));
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -283,7 +283,7 @@ _mesa_set_enable(struct gl_context *ctx, GLenum cap, GLboolean state)
|
|||
if (MESA_VERBOSE & VERBOSE_API)
|
||||
_mesa_debug(ctx, "%s %s (newstate is %x)\n",
|
||||
state ? "glEnable" : "glDisable",
|
||||
_mesa_lookup_enum_by_nr(cap),
|
||||
_mesa_enum_to_string(cap),
|
||||
ctx->NewState);
|
||||
|
||||
switch (cap) {
|
||||
|
|
@ -1022,7 +1022,7 @@ _mesa_set_enable(struct gl_context *ctx, GLenum cap, GLboolean state)
|
|||
|
||||
invalid_enum_error:
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "gl%s(%s)",
|
||||
state ? "Enable" : "Disable", _mesa_lookup_enum_by_nr(cap));
|
||||
state ? "Enable" : "Disable", _mesa_enum_to_string(cap));
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -1101,7 +1101,7 @@ _mesa_set_enablei(struct gl_context *ctx, GLenum cap,
|
|||
invalid_enum_error:
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "%s(cap=%s)",
|
||||
state ? "glEnablei" : "glDisablei",
|
||||
_mesa_lookup_enum_by_nr(cap));
|
||||
_mesa_enum_to_string(cap));
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -1143,7 +1143,7 @@ _mesa_IsEnabledi( GLenum cap, GLuint index )
|
|||
return (ctx->Scissor.EnableFlags >> index) & 1;
|
||||
default:
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "glIsEnabledIndexed(cap=%s)",
|
||||
_mesa_lookup_enum_by_nr(cap));
|
||||
_mesa_enum_to_string(cap));
|
||||
return GL_FALSE;
|
||||
}
|
||||
}
|
||||
|
|
@ -1623,6 +1623,6 @@ _mesa_IsEnabled( GLenum cap )
|
|||
|
||||
invalid_enum_error:
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "glIsEnabled(%s)",
|
||||
_mesa_lookup_enum_by_nr(cap));
|
||||
_mesa_enum_to_string(cap));
|
||||
return GL_FALSE;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -42,7 +42,7 @@ extern "C" {
|
|||
#endif
|
||||
|
||||
|
||||
extern const char *_mesa_lookup_enum_by_nr( int nr );
|
||||
extern const char *_mesa_enum_to_string( int nr );
|
||||
|
||||
/* Get the name of an enum given that it is a primitive type. Avoids
|
||||
* GL_FALSE/GL_POINTS ambiguity and others.
|
||||
|
|
|
|||
|
|
@ -1314,7 +1314,7 @@ flush_delayed_errors( struct gl_context *ctx )
|
|||
if (ctx->ErrorDebugCount) {
|
||||
_mesa_snprintf(s, MAX_DEBUG_MESSAGE_LENGTH, "%d similar %s errors",
|
||||
ctx->ErrorDebugCount,
|
||||
_mesa_lookup_enum_by_nr(ctx->ErrorValue));
|
||||
_mesa_enum_to_string(ctx->ErrorValue));
|
||||
|
||||
output_if_debug("Mesa", s, GL_TRUE);
|
||||
|
||||
|
|
@ -1503,7 +1503,7 @@ _mesa_error( struct gl_context *ctx, GLenum error, const char *fmtString, ... )
|
|||
}
|
||||
|
||||
len = _mesa_snprintf(s2, MAX_DEBUG_MESSAGE_LENGTH, "%s in %s",
|
||||
_mesa_lookup_enum_by_nr(error), s);
|
||||
_mesa_enum_to_string(error), s);
|
||||
if (len >= MAX_DEBUG_MESSAGE_LENGTH) {
|
||||
/* Same as above. */
|
||||
assert(0);
|
||||
|
|
|
|||
|
|
@ -2007,7 +2007,7 @@ renderbuffer_storage(struct gl_context *ctx, struct gl_renderbuffer *rb,
|
|||
baseFormat = _mesa_base_fbo_format(ctx, internalFormat);
|
||||
if (baseFormat == 0) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "%s(internalFormat=%s)",
|
||||
func, _mesa_lookup_enum_by_nr(internalFormat));
|
||||
func, _mesa_enum_to_string(internalFormat));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -2095,12 +2095,12 @@ renderbuffer_storage_named(GLuint renderbuffer, GLenum internalFormat,
|
|||
if (samples == NO_SAMPLES)
|
||||
_mesa_debug(ctx, "%s(%u, %s, %d, %d)\n",
|
||||
func, renderbuffer,
|
||||
_mesa_lookup_enum_by_nr(internalFormat),
|
||||
_mesa_enum_to_string(internalFormat),
|
||||
width, height);
|
||||
else
|
||||
_mesa_debug(ctx, "%s(%u, %s, %d, %d, %d)\n",
|
||||
func, renderbuffer,
|
||||
_mesa_lookup_enum_by_nr(internalFormat),
|
||||
_mesa_enum_to_string(internalFormat),
|
||||
width, height, samples);
|
||||
}
|
||||
|
||||
|
|
@ -2131,14 +2131,14 @@ renderbuffer_storage_target(GLenum target, GLenum internalFormat,
|
|||
if (samples == NO_SAMPLES)
|
||||
_mesa_debug(ctx, "%s(%s, %s, %d, %d)\n",
|
||||
func,
|
||||
_mesa_lookup_enum_by_nr(target),
|
||||
_mesa_lookup_enum_by_nr(internalFormat),
|
||||
_mesa_enum_to_string(target),
|
||||
_mesa_enum_to_string(internalFormat),
|
||||
width, height);
|
||||
else
|
||||
_mesa_debug(ctx, "%s(%s, %s, %d, %d, %d)\n",
|
||||
func,
|
||||
_mesa_lookup_enum_by_nr(target),
|
||||
_mesa_lookup_enum_by_nr(internalFormat),
|
||||
_mesa_enum_to_string(target),
|
||||
_mesa_enum_to_string(internalFormat),
|
||||
width, height, samples);
|
||||
}
|
||||
|
||||
|
|
@ -2311,7 +2311,7 @@ get_render_buffer_parameteriv(struct gl_context *ctx,
|
|||
/* fallthrough */
|
||||
default:
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "%s(invalid pname=%s)", func,
|
||||
_mesa_lookup_enum_by_nr(pname));
|
||||
_mesa_enum_to_string(pname));
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
|
@ -2694,13 +2694,13 @@ _mesa_CheckFramebufferStatus(GLenum target)
|
|||
|
||||
if (MESA_VERBOSE & VERBOSE_API)
|
||||
_mesa_debug(ctx, "glCheckFramebufferStatus(%s)\n",
|
||||
_mesa_lookup_enum_by_nr(target));
|
||||
_mesa_enum_to_string(target));
|
||||
|
||||
fb = get_framebuffer_target(ctx, target);
|
||||
if (!fb) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM,
|
||||
"glCheckFramebufferStatus(invalid target %s)",
|
||||
_mesa_lookup_enum_by_nr(target));
|
||||
_mesa_enum_to_string(target));
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
@ -2732,7 +2732,7 @@ _mesa_CheckNamedFramebufferStatus(GLuint framebuffer, GLenum target)
|
|||
default:
|
||||
_mesa_error(ctx, GL_INVALID_ENUM,
|
||||
"glCheckNamedFramebufferStatus(invalid target %s)",
|
||||
_mesa_lookup_enum_by_nr(target));
|
||||
_mesa_enum_to_string(target));
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
@ -2851,7 +2851,7 @@ check_layered_texture_target(struct gl_context *ctx, GLenum target,
|
|||
|
||||
_mesa_error(ctx, GL_INVALID_OPERATION,
|
||||
"%s(invalid texture target %s)", caller,
|
||||
_mesa_lookup_enum_by_nr(target));
|
||||
_mesa_enum_to_string(target));
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
@ -2893,7 +2893,7 @@ check_texture_target(struct gl_context *ctx, GLenum target,
|
|||
|
||||
_mesa_error(ctx, GL_INVALID_OPERATION,
|
||||
"%s(invalid texture target %s)", caller,
|
||||
_mesa_lookup_enum_by_nr(target));
|
||||
_mesa_enum_to_string(target));
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
@ -2962,7 +2962,7 @@ check_textarget(struct gl_context *ctx, int dims, GLenum target,
|
|||
if (err) {
|
||||
_mesa_error(ctx, GL_INVALID_OPERATION,
|
||||
"%s(invalid textarget %s)",
|
||||
caller, _mesa_lookup_enum_by_nr(textarget));
|
||||
caller, _mesa_enum_to_string(textarget));
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
@ -3074,7 +3074,7 @@ _mesa_framebuffer_texture(struct gl_context *ctx, struct gl_framebuffer *fb,
|
|||
att = get_attachment(ctx, fb, attachment);
|
||||
if (att == NULL) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "%s(invalid attachment %s)", caller,
|
||||
_mesa_lookup_enum_by_nr(attachment));
|
||||
_mesa_enum_to_string(attachment));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -3157,7 +3157,7 @@ framebuffer_texture_with_dims(int dims, GLenum target,
|
|||
fb = get_framebuffer_target(ctx, target);
|
||||
if (!fb) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "%s(invalid target %s)", caller,
|
||||
_mesa_lookup_enum_by_nr(target));
|
||||
_mesa_enum_to_string(target));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -3225,7 +3225,7 @@ _mesa_FramebufferTextureLayer(GLenum target, GLenum attachment,
|
|||
if (!fb) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM,
|
||||
"glFramebufferTextureLayer(invalid target %s)",
|
||||
_mesa_lookup_enum_by_nr(target));
|
||||
_mesa_enum_to_string(target));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -3319,7 +3319,7 @@ _mesa_FramebufferTexture(GLenum target, GLenum attachment,
|
|||
if (!fb) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM,
|
||||
"glFramebufferTexture(invalid target %s)",
|
||||
_mesa_lookup_enum_by_nr(target));
|
||||
_mesa_enum_to_string(target));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -3400,7 +3400,7 @@ _mesa_framebuffer_renderbuffer(struct gl_context *ctx,
|
|||
if (att == NULL) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM,
|
||||
"%s(invalid attachment %s)", func,
|
||||
_mesa_lookup_enum_by_nr(attachment));
|
||||
_mesa_enum_to_string(attachment));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -3440,7 +3440,7 @@ _mesa_FramebufferRenderbuffer(GLenum target, GLenum attachment,
|
|||
if (!fb) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM,
|
||||
"glFramebufferRenderbuffer(invalid target %s)",
|
||||
_mesa_lookup_enum_by_nr(target));
|
||||
_mesa_enum_to_string(target));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -3539,7 +3539,7 @@ _mesa_get_framebuffer_attachment_parameter(struct gl_context *ctx,
|
|||
attachment != GL_DEPTH && attachment != GL_STENCIL) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM,
|
||||
"%s(invalid attachment %s)", caller,
|
||||
_mesa_lookup_enum_by_nr(attachment));
|
||||
_mesa_enum_to_string(attachment));
|
||||
return;
|
||||
}
|
||||
/* the default / window-system FBO */
|
||||
|
|
@ -3552,7 +3552,7 @@ _mesa_get_framebuffer_attachment_parameter(struct gl_context *ctx,
|
|||
|
||||
if (att == NULL) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "%s(invalid attachment %s)", caller,
|
||||
_mesa_lookup_enum_by_nr(attachment));
|
||||
_mesa_enum_to_string(attachment));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -3609,7 +3609,7 @@ _mesa_get_framebuffer_attachment_parameter(struct gl_context *ctx,
|
|||
}
|
||||
else if (att->Type == GL_NONE) {
|
||||
_mesa_error(ctx, err, "%s(invalid pname %s)", caller,
|
||||
_mesa_lookup_enum_by_nr(pname));
|
||||
_mesa_enum_to_string(pname));
|
||||
}
|
||||
else {
|
||||
goto invalid_pname_enum;
|
||||
|
|
@ -3626,7 +3626,7 @@ _mesa_get_framebuffer_attachment_parameter(struct gl_context *ctx,
|
|||
}
|
||||
else if (att->Type == GL_NONE) {
|
||||
_mesa_error(ctx, err, "%s(invalid pname %s)", caller,
|
||||
_mesa_lookup_enum_by_nr(pname));
|
||||
_mesa_enum_to_string(pname));
|
||||
}
|
||||
else {
|
||||
goto invalid_pname_enum;
|
||||
|
|
@ -3637,7 +3637,7 @@ _mesa_get_framebuffer_attachment_parameter(struct gl_context *ctx,
|
|||
goto invalid_pname_enum;
|
||||
} else if (att->Type == GL_NONE) {
|
||||
_mesa_error(ctx, err, "%s(invalid pname %s)", caller,
|
||||
_mesa_lookup_enum_by_nr(pname));
|
||||
_mesa_enum_to_string(pname));
|
||||
} else if (att->Type == GL_TEXTURE) {
|
||||
if (att->Texture && (att->Texture->Target == GL_TEXTURE_3D ||
|
||||
att->Texture->Target == GL_TEXTURE_2D_ARRAY)) {
|
||||
|
|
@ -3659,7 +3659,7 @@ _mesa_get_framebuffer_attachment_parameter(struct gl_context *ctx,
|
|||
}
|
||||
else if (att->Type == GL_NONE) {
|
||||
_mesa_error(ctx, err, "%s(invalid pname %s)", caller,
|
||||
_mesa_lookup_enum_by_nr(pname));
|
||||
_mesa_enum_to_string(pname));
|
||||
}
|
||||
else {
|
||||
if (ctx->Extensions.EXT_framebuffer_sRGB) {
|
||||
|
|
@ -3682,7 +3682,7 @@ _mesa_get_framebuffer_attachment_parameter(struct gl_context *ctx,
|
|||
}
|
||||
else if (att->Type == GL_NONE) {
|
||||
_mesa_error(ctx, err, "%s(invalid pname %s)", caller,
|
||||
_mesa_lookup_enum_by_nr(pname));
|
||||
_mesa_enum_to_string(pname));
|
||||
}
|
||||
else {
|
||||
mesa_format format = att->Renderbuffer->Format;
|
||||
|
|
@ -3734,7 +3734,7 @@ _mesa_get_framebuffer_attachment_parameter(struct gl_context *ctx,
|
|||
}
|
||||
else if (att->Type == GL_NONE) {
|
||||
_mesa_error(ctx, err, "%s(invalid pname %s)", caller,
|
||||
_mesa_lookup_enum_by_nr(pname));
|
||||
_mesa_enum_to_string(pname));
|
||||
}
|
||||
else if (att->Texture) {
|
||||
const struct gl_texture_image *texImage =
|
||||
|
|
@ -3763,7 +3763,7 @@ _mesa_get_framebuffer_attachment_parameter(struct gl_context *ctx,
|
|||
*params = att->Layered;
|
||||
} else if (att->Type == GL_NONE) {
|
||||
_mesa_error(ctx, err, "%s(invalid pname %s)", caller,
|
||||
_mesa_lookup_enum_by_nr(pname));
|
||||
_mesa_enum_to_string(pname));
|
||||
} else {
|
||||
goto invalid_pname_enum;
|
||||
}
|
||||
|
|
@ -3776,7 +3776,7 @@ _mesa_get_framebuffer_attachment_parameter(struct gl_context *ctx,
|
|||
|
||||
invalid_pname_enum:
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "%s(invalid pname %s)", caller,
|
||||
_mesa_lookup_enum_by_nr(pname));
|
||||
_mesa_enum_to_string(pname));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -3792,7 +3792,7 @@ _mesa_GetFramebufferAttachmentParameteriv(GLenum target, GLenum attachment,
|
|||
if (!buffer) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM,
|
||||
"glGetFramebufferAttachmentParameteriv(invalid target %s)",
|
||||
_mesa_lookup_enum_by_nr(target));
|
||||
_mesa_enum_to_string(target));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -4009,7 +4009,7 @@ invalidate_framebuffer_storage(struct gl_context *ctx,
|
|||
|
||||
invalid_enum:
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "%s(invalid attachment %s)", name,
|
||||
_mesa_lookup_enum_by_nr(attachments[i]));
|
||||
_mesa_enum_to_string(attachments[i]));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -4026,7 +4026,7 @@ _mesa_InvalidateSubFramebuffer(GLenum target, GLsizei numAttachments,
|
|||
if (!fb) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM,
|
||||
"glInvalidateSubFramebuffer(invalid target %s)",
|
||||
_mesa_lookup_enum_by_nr(target));
|
||||
_mesa_enum_to_string(target));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -4076,7 +4076,7 @@ _mesa_InvalidateFramebuffer(GLenum target, GLsizei numAttachments,
|
|||
if (!fb) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM,
|
||||
"glInvalidateFramebuffer(invalid target %s)",
|
||||
_mesa_lookup_enum_by_nr(target));
|
||||
_mesa_enum_to_string(target));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -4152,7 +4152,7 @@ _mesa_DiscardFramebufferEXT(GLenum target, GLsizei numAttachments,
|
|||
if (!fb) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM,
|
||||
"glDiscardFramebufferEXT(target %s)",
|
||||
_mesa_lookup_enum_by_nr(target));
|
||||
_mesa_enum_to_string(target));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -4189,5 +4189,5 @@ _mesa_DiscardFramebufferEXT(GLenum target, GLsizei numAttachments,
|
|||
invalid_enum:
|
||||
_mesa_error(ctx, GL_INVALID_ENUM,
|
||||
"glDiscardFramebufferEXT(attachment %s)",
|
||||
_mesa_lookup_enum_by_nr(attachments[i]));
|
||||
_mesa_enum_to_string(attachments[i]));
|
||||
}
|
||||
|
|
|
|||
|
|
@ -415,7 +415,7 @@ _mesa_RenderMode( GLenum mode )
|
|||
ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, 0);
|
||||
|
||||
if (MESA_VERBOSE & VERBOSE_API)
|
||||
_mesa_debug(ctx, "glRenderMode %s\n", _mesa_lookup_enum_by_nr(mode));
|
||||
_mesa_debug(ctx, "glRenderMode %s\n", _mesa_enum_to_string(mode));
|
||||
|
||||
FLUSH_VERTICES(ctx, _NEW_RENDERMODE);
|
||||
|
||||
|
|
|
|||
|
|
@ -80,7 +80,7 @@ _mesa_GetInternalformativ(GLenum target, GLenum internalformat, GLenum pname,
|
|||
default:
|
||||
_mesa_error(ctx, GL_INVALID_ENUM,
|
||||
"glGetInternalformativ(target=%s)",
|
||||
_mesa_lookup_enum_by_nr(target));
|
||||
_mesa_enum_to_string(target));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -107,7 +107,7 @@ _mesa_GetInternalformativ(GLenum target, GLenum internalformat, GLenum pname,
|
|||
_mesa_base_fbo_format(ctx, internalformat) == 0) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM,
|
||||
"glGetInternalformativ(internalformat=%s)",
|
||||
_mesa_lookup_enum_by_nr(internalformat));
|
||||
_mesa_enum_to_string(internalformat));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -119,7 +119,7 @@ _mesa_GetInternalformativ(GLenum target, GLenum internalformat, GLenum pname,
|
|||
if (bufSize < 0) {
|
||||
_mesa_error(ctx, GL_INVALID_VALUE,
|
||||
"glGetInternalformativ(target=%s)",
|
||||
_mesa_lookup_enum_by_nr(target));
|
||||
_mesa_enum_to_string(target));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -168,7 +168,7 @@ _mesa_GetInternalformativ(GLenum target, GLenum internalformat, GLenum pname,
|
|||
default:
|
||||
_mesa_error(ctx, GL_INVALID_ENUM,
|
||||
"glGetInternalformativ(pname=%s)",
|
||||
_mesa_lookup_enum_by_nr(pname));
|
||||
_mesa_enum_to_string(pname));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -938,7 +938,7 @@ _mesa_print_framebuffer(const struct gl_framebuffer *fb)
|
|||
|
||||
fprintf(stderr, "Mesa Framebuffer %u at %p\n", fb->Name, (void *) fb);
|
||||
fprintf(stderr, " Size: %u x %u Status: %s\n", fb->Width, fb->Height,
|
||||
_mesa_lookup_enum_by_nr(fb->_Status));
|
||||
_mesa_enum_to_string(fb->_Status));
|
||||
fprintf(stderr, " Attachments:\n");
|
||||
|
||||
for (i = 0; i < BUFFER_COUNT; i++) {
|
||||
|
|
|
|||
|
|
@ -83,7 +83,7 @@ _mesa_generate_texture_mipmap(struct gl_context *ctx,
|
|||
|
||||
if (error) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "glGenerate%sMipmap(target=%s)",
|
||||
suffix, _mesa_lookup_enum_by_nr(target));
|
||||
suffix, _mesa_enum_to_string(target));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1161,7 +1161,7 @@ check_extra(struct gl_context *ctx, const char *func, const struct value_desc *d
|
|||
|
||||
if (api_check && !api_found) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "%s(pname=%s)", func,
|
||||
_mesa_lookup_enum_by_nr(d->pname));
|
||||
_mesa_enum_to_string(d->pname));
|
||||
return GL_FALSE;
|
||||
}
|
||||
|
||||
|
|
@ -1222,7 +1222,7 @@ find_value(const char *func, GLenum pname, void **p, union value *v)
|
|||
* any valid enum. */
|
||||
if (unlikely(idx == 0)) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "%s(pname=%s)", func,
|
||||
_mesa_lookup_enum_by_nr(pname));
|
||||
_mesa_enum_to_string(pname));
|
||||
return &error_value;
|
||||
}
|
||||
|
||||
|
|
@ -2004,11 +2004,11 @@ find_value_indexed(const char *func, GLenum pname, GLuint index, union value *v)
|
|||
|
||||
invalid_enum:
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "%s(pname=%s)", func,
|
||||
_mesa_lookup_enum_by_nr(pname));
|
||||
_mesa_enum_to_string(pname));
|
||||
return TYPE_INVALID;
|
||||
invalid_value:
|
||||
_mesa_error(ctx, GL_INVALID_VALUE, "%s(pname=%s)", func,
|
||||
_mesa_lookup_enum_by_nr(pname));
|
||||
_mesa_enum_to_string(pname));
|
||||
return TYPE_INVALID;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -208,7 +208,7 @@ _mesa_GetPointerv( GLenum pname, GLvoid **params )
|
|||
return;
|
||||
|
||||
if (MESA_VERBOSE & VERBOSE_API)
|
||||
_mesa_debug(ctx, "glGetPointerv %s\n", _mesa_lookup_enum_by_nr(pname));
|
||||
_mesa_debug(ctx, "glGetPointerv %s\n", _mesa_enum_to_string(pname));
|
||||
|
||||
switch (pname) {
|
||||
case GL_VERTEX_ARRAY_POINTER:
|
||||
|
|
@ -299,7 +299,7 @@ _mesa_GetError( void )
|
|||
ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, 0);
|
||||
|
||||
if (MESA_VERBOSE & VERBOSE_API)
|
||||
_mesa_debug(ctx, "glGetError <-- %s\n", _mesa_lookup_enum_by_nr(e));
|
||||
_mesa_debug(ctx, "glGetError <-- %s\n", _mesa_enum_to_string(e));
|
||||
|
||||
ctx->ErrorValue = (GLenum) GL_NO_ERROR;
|
||||
ctx->ErrorDebugCount = 0;
|
||||
|
|
|
|||
|
|
@ -186,7 +186,7 @@ get_map_idx(GLenum value)
|
|||
return IDX_RG;
|
||||
default:
|
||||
_mesa_problem(NULL, "Unexpected inFormat %s",
|
||||
_mesa_lookup_enum_by_nr(value));
|
||||
_mesa_enum_to_string(value));
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
|
@ -216,8 +216,8 @@ _mesa_compute_component_mapping(GLenum inFormat, GLenum outFormat, GLubyte *map)
|
|||
|
||||
#if 0
|
||||
printf("from %x/%s to %x/%s map %d %d %d %d %d %d\n",
|
||||
inFormat, _mesa_lookup_enum_by_nr(inFormat),
|
||||
outFormat, _mesa_lookup_enum_by_nr(outFormat),
|
||||
inFormat, _mesa_enum_to_string(inFormat),
|
||||
outFormat, _mesa_enum_to_string(outFormat),
|
||||
map[0],
|
||||
map[1],
|
||||
map[2],
|
||||
|
|
|
|||
|
|
@ -40,8 +40,8 @@ _mesa_Hint( GLenum target, GLenum mode )
|
|||
|
||||
if (MESA_VERBOSE & VERBOSE_API)
|
||||
_mesa_debug(ctx, "glHint %s %s\n",
|
||||
_mesa_lookup_enum_by_nr(target),
|
||||
_mesa_lookup_enum_by_nr(mode));
|
||||
_mesa_enum_to_string(target),
|
||||
_mesa_enum_to_string(mode));
|
||||
|
||||
if (mode != GL_NICEST && mode != GL_FASTEST && mode != GL_DONT_CARE) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "glHint(mode)");
|
||||
|
|
|
|||
|
|
@ -42,7 +42,7 @@ _mesa_ShadeModel( GLenum mode )
|
|||
GET_CURRENT_CONTEXT(ctx);
|
||||
|
||||
if (MESA_VERBOSE & VERBOSE_API)
|
||||
_mesa_debug(ctx, "glShadeModel %s\n", _mesa_lookup_enum_by_nr(mode));
|
||||
_mesa_debug(ctx, "glShadeModel %s\n", _mesa_enum_to_string(mode));
|
||||
|
||||
if (mode != GL_FLAT && mode != GL_SMOOTH) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "glShadeModel");
|
||||
|
|
@ -723,8 +723,8 @@ _mesa_ColorMaterial( GLenum face, GLenum mode )
|
|||
|
||||
if (MESA_VERBOSE&VERBOSE_API)
|
||||
_mesa_debug(ctx, "glColorMaterial %s %s\n",
|
||||
_mesa_lookup_enum_by_nr(face),
|
||||
_mesa_lookup_enum_by_nr(mode));
|
||||
_mesa_enum_to_string(face),
|
||||
_mesa_enum_to_string(mode));
|
||||
|
||||
bitmask = _mesa_material_bitmask(ctx, face, mode, legal, "glColorMaterial");
|
||||
if (bitmask == 0)
|
||||
|
|
|
|||
|
|
@ -229,7 +229,7 @@ _mesa_PushMatrix( void )
|
|||
|
||||
if (MESA_VERBOSE&VERBOSE_API)
|
||||
_mesa_debug(ctx, "glPushMatrix %s\n",
|
||||
_mesa_lookup_enum_by_nr(ctx->Transform.MatrixMode));
|
||||
_mesa_enum_to_string(ctx->Transform.MatrixMode));
|
||||
|
||||
if (stack->Depth + 1 >= stack->MaxDepth) {
|
||||
if (ctx->Transform.MatrixMode == GL_TEXTURE) {
|
||||
|
|
@ -239,7 +239,7 @@ _mesa_PushMatrix( void )
|
|||
}
|
||||
else {
|
||||
_mesa_error(ctx, GL_STACK_OVERFLOW, "glPushMatrix(mode=%s)",
|
||||
_mesa_lookup_enum_by_nr(ctx->Transform.MatrixMode));
|
||||
_mesa_enum_to_string(ctx->Transform.MatrixMode));
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
|
@ -270,7 +270,7 @@ _mesa_PopMatrix( void )
|
|||
|
||||
if (MESA_VERBOSE&VERBOSE_API)
|
||||
_mesa_debug(ctx, "glPopMatrix %s\n",
|
||||
_mesa_lookup_enum_by_nr(ctx->Transform.MatrixMode));
|
||||
_mesa_enum_to_string(ctx->Transform.MatrixMode));
|
||||
|
||||
if (stack->Depth == 0) {
|
||||
if (ctx->Transform.MatrixMode == GL_TEXTURE) {
|
||||
|
|
@ -280,7 +280,7 @@ _mesa_PopMatrix( void )
|
|||
}
|
||||
else {
|
||||
_mesa_error(ctx, GL_STACK_UNDERFLOW, "glPopMatrix(mode=%s)",
|
||||
_mesa_lookup_enum_by_nr(ctx->Transform.MatrixMode));
|
||||
_mesa_enum_to_string(ctx->Transform.MatrixMode));
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -234,7 +234,7 @@ get_label_pointer(struct gl_context *ctx, GLenum identifier, GLuint name,
|
|||
|
||||
invalid_enum:
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "%s(identifier = %s)",
|
||||
caller, _mesa_lookup_enum_by_nr(identifier));
|
||||
caller, _mesa_enum_to_string(identifier));
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -635,7 +635,7 @@ _mesa_GetProgramPipelineiv(GLuint pipeline, GLenum pname, GLint *params)
|
|||
}
|
||||
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "glGetProgramPipelineiv(pname=%s)",
|
||||
_mesa_lookup_enum_by_nr(pname));
|
||||
_mesa_enum_to_string(pname));
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@ _mesa_CullFace( GLenum mode )
|
|||
GET_CURRENT_CONTEXT(ctx);
|
||||
|
||||
if (MESA_VERBOSE&VERBOSE_API)
|
||||
_mesa_debug(ctx, "glCullFace %s\n", _mesa_lookup_enum_by_nr(mode));
|
||||
_mesa_debug(ctx, "glCullFace %s\n", _mesa_enum_to_string(mode));
|
||||
|
||||
if (mode!=GL_FRONT && mode!=GL_BACK && mode!=GL_FRONT_AND_BACK) {
|
||||
_mesa_error( ctx, GL_INVALID_ENUM, "glCullFace" );
|
||||
|
|
@ -91,7 +91,7 @@ _mesa_FrontFace( GLenum mode )
|
|||
GET_CURRENT_CONTEXT(ctx);
|
||||
|
||||
if (MESA_VERBOSE&VERBOSE_API)
|
||||
_mesa_debug(ctx, "glFrontFace %s\n", _mesa_lookup_enum_by_nr(mode));
|
||||
_mesa_debug(ctx, "glFrontFace %s\n", _mesa_enum_to_string(mode));
|
||||
|
||||
if (mode!=GL_CW && mode!=GL_CCW) {
|
||||
_mesa_error( ctx, GL_INVALID_ENUM, "glFrontFace" );
|
||||
|
|
@ -128,8 +128,8 @@ _mesa_PolygonMode( GLenum face, GLenum mode )
|
|||
|
||||
if (MESA_VERBOSE&VERBOSE_API)
|
||||
_mesa_debug(ctx, "glPolygonMode %s %s\n",
|
||||
_mesa_lookup_enum_by_nr(face),
|
||||
_mesa_lookup_enum_by_nr(mode));
|
||||
_mesa_enum_to_string(face),
|
||||
_mesa_enum_to_string(mode));
|
||||
|
||||
if (mode!=GL_POINT && mode!=GL_LINE && mode!=GL_FILL) {
|
||||
_mesa_error( ctx, GL_INVALID_ENUM, "glPolygonMode(mode)" );
|
||||
|
|
|
|||
|
|
@ -81,7 +81,7 @@ _mesa_GetProgramInterfaceiv(GLuint program, GLenum programInterface,
|
|||
/* Validate interface. */
|
||||
if (!supported_interface_enum(programInterface)) {
|
||||
_mesa_error(ctx, GL_INVALID_OPERATION, "glGetProgramInterfaceiv(%s)",
|
||||
_mesa_lookup_enum_by_nr(programInterface));
|
||||
_mesa_enum_to_string(programInterface));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -96,8 +96,8 @@ _mesa_GetProgramInterfaceiv(GLuint program, GLenum programInterface,
|
|||
if (programInterface == GL_ATOMIC_COUNTER_BUFFER) {
|
||||
_mesa_error(ctx, GL_INVALID_OPERATION,
|
||||
"glGetProgramInterfaceiv(%s pname %s)",
|
||||
_mesa_lookup_enum_by_nr(programInterface),
|
||||
_mesa_lookup_enum_by_nr(pname));
|
||||
_mesa_enum_to_string(programInterface),
|
||||
_mesa_enum_to_string(pname));
|
||||
return;
|
||||
}
|
||||
/* Name length consists of base name, 3 additional chars '[0]' if
|
||||
|
|
@ -138,15 +138,15 @@ _mesa_GetProgramInterfaceiv(GLuint program, GLenum programInterface,
|
|||
default:
|
||||
_mesa_error(ctx, GL_INVALID_OPERATION,
|
||||
"glGetProgramInterfaceiv(%s pname %s)",
|
||||
_mesa_lookup_enum_by_nr(programInterface),
|
||||
_mesa_lookup_enum_by_nr(pname));
|
||||
_mesa_enum_to_string(programInterface),
|
||||
_mesa_enum_to_string(pname));
|
||||
};
|
||||
break;
|
||||
case GL_MAX_NUM_COMPATIBLE_SUBROUTINES:
|
||||
default:
|
||||
_mesa_error(ctx, GL_INVALID_OPERATION,
|
||||
"glGetProgramInterfaceiv(pname %s)",
|
||||
_mesa_lookup_enum_by_nr(pname));
|
||||
_mesa_enum_to_string(pname));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -234,7 +234,7 @@ _mesa_GetProgramResourceIndex(GLuint program, GLenum programInterface,
|
|||
case GL_ATOMIC_COUNTER_BUFFER:
|
||||
default:
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "glGetProgramResourceIndex(%s)",
|
||||
_mesa_lookup_enum_by_nr(programInterface));
|
||||
_mesa_enum_to_string(programInterface));
|
||||
}
|
||||
|
||||
return GL_INVALID_INDEX;
|
||||
|
|
@ -262,7 +262,7 @@ _mesa_GetProgramResourceName(GLuint program, GLenum programInterface,
|
|||
if (programInterface == GL_ATOMIC_COUNTER_BUFFER ||
|
||||
!supported_interface_enum(programInterface)) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "glGetProgramResourceName(%s)",
|
||||
_mesa_lookup_enum_by_nr(programInterface));
|
||||
_mesa_enum_to_string(programInterface));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -380,7 +380,7 @@ _mesa_GetProgramResourceLocation(GLuint program, GLenum programInterface,
|
|||
|
||||
default:
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "glGetProgramResourceLocation(%s %s)",
|
||||
_mesa_lookup_enum_by_nr(programInterface), name);
|
||||
_mesa_enum_to_string(programInterface), name);
|
||||
}
|
||||
|
||||
return _mesa_program_resource_location(shProg, programInterface, name);
|
||||
|
|
@ -408,7 +408,7 @@ _mesa_GetProgramResourceLocationIndex(GLuint program, GLenum programInterface,
|
|||
if (programInterface != GL_PROGRAM_OUTPUT) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM,
|
||||
"glGetProgramResourceLocationIndex(%s)",
|
||||
_mesa_lookup_enum_by_nr(programInterface));
|
||||
_mesa_enum_to_string(programInterface));
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -295,7 +295,7 @@ _mesa_CreateQueries(GLenum target, GLsizei n, GLuint *ids)
|
|||
break;
|
||||
default:
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "glCreateQueries(invalid target = %s)",
|
||||
_mesa_lookup_enum_by_nr(target));
|
||||
_mesa_enum_to_string(target));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -390,7 +390,7 @@ _mesa_BeginQueryIndexed(GLenum target, GLuint index, GLuint id)
|
|||
|
||||
if (MESA_VERBOSE & VERBOSE_API)
|
||||
_mesa_debug(ctx, "glBeginQueryIndexed(%s, %u, %u)\n",
|
||||
_mesa_lookup_enum_by_nr(target), index, id);
|
||||
_mesa_enum_to_string(target), index, id);
|
||||
|
||||
if (!query_error_check_index(ctx, target, index))
|
||||
return;
|
||||
|
|
@ -412,7 +412,7 @@ _mesa_BeginQueryIndexed(GLenum target, GLuint index, GLuint id)
|
|||
if (*bindpt) {
|
||||
_mesa_error(ctx, GL_INVALID_OPERATION,
|
||||
"glBeginQuery{Indexed}(target=%s is active)",
|
||||
_mesa_lookup_enum_by_nr(target));
|
||||
_mesa_enum_to_string(target));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -496,7 +496,7 @@ _mesa_EndQueryIndexed(GLenum target, GLuint index)
|
|||
|
||||
if (MESA_VERBOSE & VERBOSE_API)
|
||||
_mesa_debug(ctx, "glEndQueryIndexed(%s, %u)\n",
|
||||
_mesa_lookup_enum_by_nr(target), index);
|
||||
_mesa_enum_to_string(target), index);
|
||||
|
||||
if (!query_error_check_index(ctx, target, index))
|
||||
return;
|
||||
|
|
@ -516,8 +516,8 @@ _mesa_EndQueryIndexed(GLenum target, GLuint index)
|
|||
if (q && q->Target != target) {
|
||||
_mesa_error(ctx, GL_INVALID_OPERATION,
|
||||
"glEndQuery(target=%s with active query of target %s)",
|
||||
_mesa_lookup_enum_by_nr(target),
|
||||
_mesa_lookup_enum_by_nr(q->Target));
|
||||
_mesa_enum_to_string(target),
|
||||
_mesa_enum_to_string(q->Target));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -553,7 +553,7 @@ _mesa_QueryCounter(GLuint id, GLenum target)
|
|||
|
||||
if (MESA_VERBOSE & VERBOSE_API)
|
||||
_mesa_debug(ctx, "glQueryCounter(%u, %s)\n", id,
|
||||
_mesa_lookup_enum_by_nr(target));
|
||||
_mesa_enum_to_string(target));
|
||||
|
||||
/* error checking */
|
||||
if (target != GL_TIMESTAMP) {
|
||||
|
|
@ -628,9 +628,9 @@ _mesa_GetQueryIndexediv(GLenum target, GLuint index, GLenum pname,
|
|||
|
||||
if (MESA_VERBOSE & VERBOSE_API)
|
||||
_mesa_debug(ctx, "glGetQueryIndexediv(%s, %u, %s)\n",
|
||||
_mesa_lookup_enum_by_nr(target),
|
||||
_mesa_enum_to_string(target),
|
||||
index,
|
||||
_mesa_lookup_enum_by_nr(pname));
|
||||
_mesa_enum_to_string(pname));
|
||||
|
||||
if (!query_error_check_index(ctx, target, index))
|
||||
return;
|
||||
|
|
@ -712,7 +712,7 @@ _mesa_GetQueryIndexediv(GLenum target, GLuint index, GLenum pname,
|
|||
default:
|
||||
_mesa_problem(ctx,
|
||||
"Unknown target in glGetQueryIndexediv(target = %s)",
|
||||
_mesa_lookup_enum_by_nr(target));
|
||||
_mesa_enum_to_string(target));
|
||||
*params = 0;
|
||||
break;
|
||||
}
|
||||
|
|
@ -740,7 +740,7 @@ _mesa_GetQueryObjectiv(GLuint id, GLenum pname, GLint *params)
|
|||
|
||||
if (MESA_VERBOSE & VERBOSE_API)
|
||||
_mesa_debug(ctx, "glGetQueryObjectiv(%u, %s)\n", id,
|
||||
_mesa_lookup_enum_by_nr(pname));
|
||||
_mesa_enum_to_string(pname));
|
||||
|
||||
if (id)
|
||||
q = _mesa_lookup_query_object(ctx, id);
|
||||
|
|
@ -794,7 +794,7 @@ _mesa_GetQueryObjectuiv(GLuint id, GLenum pname, GLuint *params)
|
|||
|
||||
if (MESA_VERBOSE & VERBOSE_API)
|
||||
_mesa_debug(ctx, "glGetQueryObjectuiv(%u, %s)\n", id,
|
||||
_mesa_lookup_enum_by_nr(pname));
|
||||
_mesa_enum_to_string(pname));
|
||||
|
||||
if (id)
|
||||
q = _mesa_lookup_query_object(ctx, id);
|
||||
|
|
@ -851,7 +851,7 @@ _mesa_GetQueryObjecti64v(GLuint id, GLenum pname, GLint64EXT *params)
|
|||
|
||||
if (MESA_VERBOSE & VERBOSE_API)
|
||||
_mesa_debug(ctx, "glGetQueryObjecti64v(%u, %s)\n", id,
|
||||
_mesa_lookup_enum_by_nr(pname));
|
||||
_mesa_enum_to_string(pname));
|
||||
|
||||
if (id)
|
||||
q = _mesa_lookup_query_object(ctx, id);
|
||||
|
|
@ -894,7 +894,7 @@ _mesa_GetQueryObjectui64v(GLuint id, GLenum pname, GLuint64EXT *params)
|
|||
|
||||
if (MESA_VERBOSE & VERBOSE_API)
|
||||
_mesa_debug(ctx, "glGetQueryObjectui64v(%u, %s)\n", id,
|
||||
_mesa_lookup_enum_by_nr(pname));
|
||||
_mesa_enum_to_string(pname));
|
||||
|
||||
if (id)
|
||||
q = _mesa_lookup_query_object(ctx, id);
|
||||
|
|
|
|||
|
|
@ -950,8 +950,8 @@ _mesa_ReadnPixelsARB( GLint x, GLint y, GLsizei width, GLsizei height,
|
|||
if (MESA_VERBOSE & VERBOSE_API)
|
||||
_mesa_debug(ctx, "glReadPixels(%d, %d, %s, %s, %p)\n",
|
||||
width, height,
|
||||
_mesa_lookup_enum_by_nr(format),
|
||||
_mesa_lookup_enum_by_nr(type),
|
||||
_mesa_enum_to_string(format),
|
||||
_mesa_enum_to_string(type),
|
||||
pixels);
|
||||
|
||||
if (width < 0 || height < 0) {
|
||||
|
|
@ -1008,8 +1008,8 @@ _mesa_ReadnPixelsARB( GLint x, GLint y, GLsizei width, GLsizei height,
|
|||
|
||||
if (err != GL_NO_ERROR) {
|
||||
_mesa_error(ctx, err, "glReadPixels(invalid format %s and/or type %s)",
|
||||
_mesa_lookup_enum_by_nr(format),
|
||||
_mesa_lookup_enum_by_nr(type));
|
||||
_mesa_enum_to_string(format),
|
||||
_mesa_enum_to_string(type));
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
|
@ -1017,8 +1017,8 @@ _mesa_ReadnPixelsARB( GLint x, GLint y, GLsizei width, GLsizei height,
|
|||
err = _mesa_error_check_format_and_type(ctx, format, type);
|
||||
if (err != GL_NO_ERROR) {
|
||||
_mesa_error(ctx, err, "glReadPixels(invalid format %s and/or type %s)",
|
||||
_mesa_lookup_enum_by_nr(format),
|
||||
_mesa_lookup_enum_by_nr(type));
|
||||
_mesa_enum_to_string(format),
|
||||
_mesa_enum_to_string(type));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -813,7 +813,7 @@ _mesa_SamplerParameteri(GLuint sampler, GLenum pname, GLint param)
|
|||
break;
|
||||
case INVALID_PNAME:
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "glSamplerParameteri(pname=%s)\n",
|
||||
_mesa_lookup_enum_by_nr(pname));
|
||||
_mesa_enum_to_string(pname));
|
||||
break;
|
||||
case INVALID_PARAM:
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "glSamplerParameteri(param=%d)\n",
|
||||
|
|
@ -906,7 +906,7 @@ _mesa_SamplerParameterf(GLuint sampler, GLenum pname, GLfloat param)
|
|||
break;
|
||||
case INVALID_PNAME:
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "glSamplerParameterf(pname=%s)\n",
|
||||
_mesa_lookup_enum_by_nr(pname));
|
||||
_mesa_enum_to_string(pname));
|
||||
break;
|
||||
case INVALID_PARAM:
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "glSamplerParameterf(param=%f)\n",
|
||||
|
|
@ -1006,7 +1006,7 @@ _mesa_SamplerParameteriv(GLuint sampler, GLenum pname, const GLint *params)
|
|||
break;
|
||||
case INVALID_PNAME:
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "glSamplerParameteriv(pname=%s)\n",
|
||||
_mesa_lookup_enum_by_nr(pname));
|
||||
_mesa_enum_to_string(pname));
|
||||
break;
|
||||
case INVALID_PARAM:
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "glSamplerParameteriv(param=%d)\n",
|
||||
|
|
@ -1099,7 +1099,7 @@ _mesa_SamplerParameterfv(GLuint sampler, GLenum pname, const GLfloat *params)
|
|||
break;
|
||||
case INVALID_PNAME:
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "glSamplerParameterfv(pname=%s)\n",
|
||||
_mesa_lookup_enum_by_nr(pname));
|
||||
_mesa_enum_to_string(pname));
|
||||
break;
|
||||
case INVALID_PARAM:
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "glSamplerParameterfv(param=%f)\n",
|
||||
|
|
@ -1184,7 +1184,7 @@ _mesa_SamplerParameterIiv(GLuint sampler, GLenum pname, const GLint *params)
|
|||
break;
|
||||
case INVALID_PNAME:
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "glSamplerParameterIiv(pname=%s)\n",
|
||||
_mesa_lookup_enum_by_nr(pname));
|
||||
_mesa_enum_to_string(pname));
|
||||
break;
|
||||
case INVALID_PARAM:
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "glSamplerParameterIiv(param=%d)\n",
|
||||
|
|
@ -1270,7 +1270,7 @@ _mesa_SamplerParameterIuiv(GLuint sampler, GLenum pname, const GLuint *params)
|
|||
break;
|
||||
case INVALID_PNAME:
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "glSamplerParameterIuiv(pname=%s)\n",
|
||||
_mesa_lookup_enum_by_nr(pname));
|
||||
_mesa_enum_to_string(pname));
|
||||
break;
|
||||
case INVALID_PARAM:
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "glSamplerParameterIuiv(param=%u)\n",
|
||||
|
|
@ -1380,7 +1380,7 @@ _mesa_GetSamplerParameteriv(GLuint sampler, GLenum pname, GLint *params)
|
|||
|
||||
invalid_pname:
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "glGetSamplerParameteriv(pname=%s)",
|
||||
_mesa_lookup_enum_by_nr(pname));
|
||||
_mesa_enum_to_string(pname));
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -1466,7 +1466,7 @@ _mesa_GetSamplerParameterfv(GLuint sampler, GLenum pname, GLfloat *params)
|
|||
|
||||
invalid_pname:
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "glGetSamplerParameterfv(pname=%s)",
|
||||
_mesa_lookup_enum_by_nr(pname));
|
||||
_mesa_enum_to_string(pname));
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -1545,7 +1545,7 @@ _mesa_GetSamplerParameterIiv(GLuint sampler, GLenum pname, GLint *params)
|
|||
|
||||
invalid_pname:
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "glGetSamplerParameterIiv(pname=%s)",
|
||||
_mesa_lookup_enum_by_nr(pname));
|
||||
_mesa_enum_to_string(pname));
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -1624,7 +1624,7 @@ _mesa_GetSamplerParameterIuiv(GLuint sampler, GLenum pname, GLuint *params)
|
|||
|
||||
invalid_pname:
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "glGetSamplerParameterIuiv(pname=%s)",
|
||||
_mesa_lookup_enum_by_nr(pname));
|
||||
_mesa_enum_to_string(pname));
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -925,8 +925,8 @@ get_buffer_property(struct gl_shader_program *shProg,
|
|||
|
||||
invalid_operation:
|
||||
_mesa_error(ctx, GL_INVALID_OPERATION, "%s(%s prop %s)", caller,
|
||||
_mesa_lookup_enum_by_nr(res->Type),
|
||||
_mesa_lookup_enum_by_nr(prop));
|
||||
_mesa_enum_to_string(res->Type),
|
||||
_mesa_enum_to_string(prop));
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
@ -1057,14 +1057,14 @@ _mesa_program_resource_prop(struct gl_shader_program *shProg,
|
|||
|
||||
invalid_enum:
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "%s(%s prop %s)", caller,
|
||||
_mesa_lookup_enum_by_nr(res->Type),
|
||||
_mesa_lookup_enum_by_nr(prop));
|
||||
_mesa_enum_to_string(res->Type),
|
||||
_mesa_enum_to_string(prop));
|
||||
return 0;
|
||||
|
||||
invalid_operation:
|
||||
_mesa_error(ctx, GL_INVALID_OPERATION, "%s(%s prop %s)", caller,
|
||||
_mesa_lookup_enum_by_nr(res->Type),
|
||||
_mesa_lookup_enum_by_nr(prop));
|
||||
_mesa_enum_to_string(res->Type),
|
||||
_mesa_enum_to_string(prop));
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
@ -1086,7 +1086,7 @@ _mesa_get_program_resourceiv(struct gl_shader_program *shProg,
|
|||
if (!res || bufSize < 0) {
|
||||
_mesa_error(ctx, GL_INVALID_VALUE,
|
||||
"glGetProgramResourceiv(%s index %d bufSize %d)",
|
||||
_mesa_lookup_enum_by_nr(programInterface), index, bufSize);
|
||||
_mesa_enum_to_string(programInterface), index, bufSize);
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -716,7 +716,7 @@ get_programiv(struct gl_context *ctx, GLuint program, GLenum pname,
|
|||
}
|
||||
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "glGetProgramiv(pname=%s)",
|
||||
_mesa_lookup_enum_by_nr(pname));
|
||||
_mesa_enum_to_string(pname));
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -1172,7 +1172,7 @@ _mesa_CreateShader(GLenum type)
|
|||
{
|
||||
GET_CURRENT_CONTEXT(ctx);
|
||||
if (MESA_VERBOSE & VERBOSE_API)
|
||||
_mesa_debug(ctx, "glCreateShader %s\n", _mesa_lookup_enum_by_nr(type));
|
||||
_mesa_debug(ctx, "glCreateShader %s\n", _mesa_enum_to_string(type));
|
||||
return create_shader(ctx, type);
|
||||
}
|
||||
|
||||
|
|
@ -1857,7 +1857,7 @@ _mesa_ProgramParameteri(GLuint program, GLenum pname, GLint value)
|
|||
|
||||
default:
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "glProgramParameteri(pname=%s)",
|
||||
_mesa_lookup_enum_by_nr(pname));
|
||||
_mesa_enum_to_string(pname));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -1865,7 +1865,7 @@ invalid_value:
|
|||
_mesa_error(ctx, GL_INVALID_VALUE,
|
||||
"glProgramParameteri(pname=%s, value=%d): "
|
||||
"value must be 0 or 1.",
|
||||
_mesa_lookup_enum_by_nr(pname),
|
||||
_mesa_enum_to_string(pname),
|
||||
value);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -610,7 +610,7 @@ _mesa_BindImageTextures(GLuint first, GLsizei count, const GLuint *textures)
|
|||
"glBindImageTextures(the internal format %s of "
|
||||
"the level zero texture image of textures[%d]=%u "
|
||||
"is not supported)",
|
||||
_mesa_lookup_enum_by_nr(tex_format),
|
||||
_mesa_enum_to_string(tex_format),
|
||||
i, texture);
|
||||
continue;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -39,13 +39,13 @@ TEST(EnumStrings, LookUpByNumber)
|
|||
{
|
||||
for (unsigned i = 0; everything[i].name != NULL; i++) {
|
||||
EXPECT_STREQ(everything[i].name,
|
||||
_mesa_lookup_enum_by_nr(everything[i].value));
|
||||
_mesa_enum_to_string(everything[i].value));
|
||||
}
|
||||
}
|
||||
|
||||
TEST(EnumStrings, LookUpUnknownNumber)
|
||||
{
|
||||
EXPECT_STRCASEEQ("0xEEEE", _mesa_lookup_enum_by_nr(0xEEEE));
|
||||
EXPECT_STRCASEEQ("0xEEEE", _mesa_enum_to_string(0xEEEE));
|
||||
}
|
||||
|
||||
/* Please type the name and the value. This makes it easier to detect
|
||||
|
|
|
|||
|
|
@ -42,7 +42,7 @@
|
|||
|
||||
|
||||
#define TE_ERROR(errCode, msg, value) \
|
||||
_mesa_error(ctx, errCode, msg, _mesa_lookup_enum_by_nr(value));
|
||||
_mesa_error(ctx, errCode, msg, _mesa_enum_to_string(value));
|
||||
|
||||
|
||||
/** Set texture env mode */
|
||||
|
|
@ -482,16 +482,16 @@ _mesa_TexEnvfv( GLenum target, GLenum pname, const GLfloat *param )
|
|||
}
|
||||
else {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "glTexEnv(target=%s)",
|
||||
_mesa_lookup_enum_by_nr(target));
|
||||
_mesa_enum_to_string(target));
|
||||
return;
|
||||
}
|
||||
|
||||
if (MESA_VERBOSE&(VERBOSE_API|VERBOSE_TEXTURE))
|
||||
_mesa_debug(ctx, "glTexEnv %s %s %.1f(%s) ...\n",
|
||||
_mesa_lookup_enum_by_nr(target),
|
||||
_mesa_lookup_enum_by_nr(pname),
|
||||
_mesa_enum_to_string(target),
|
||||
_mesa_enum_to_string(pname),
|
||||
*param,
|
||||
_mesa_lookup_enum_by_nr((GLenum) iparam0));
|
||||
_mesa_enum_to_string((GLenum) iparam0));
|
||||
|
||||
/* Tell device driver about the new texture environment */
|
||||
if (ctx->Driver.TexEnv) {
|
||||
|
|
|
|||
|
|
@ -847,7 +847,7 @@ _mesa_choose_tex_format(struct gl_context *ctx, GLenum target,
|
|||
}
|
||||
|
||||
_mesa_problem(ctx, "unexpected format %s in _mesa_choose_tex_format()",
|
||||
_mesa_lookup_enum_by_nr(internalFormat));
|
||||
_mesa_enum_to_string(internalFormat));
|
||||
return MESA_FORMAT_NONE;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -76,10 +76,10 @@ _mesa_TexGenfv( GLenum coord, GLenum pname, const GLfloat *params )
|
|||
|
||||
if (MESA_VERBOSE&(VERBOSE_API|VERBOSE_TEXTURE))
|
||||
_mesa_debug(ctx, "glTexGen %s %s %.1f(%s)...\n",
|
||||
_mesa_lookup_enum_by_nr(coord),
|
||||
_mesa_lookup_enum_by_nr(pname),
|
||||
_mesa_enum_to_string(coord),
|
||||
_mesa_enum_to_string(pname),
|
||||
*params,
|
||||
_mesa_lookup_enum_by_nr((GLenum) (GLint) *params));
|
||||
_mesa_enum_to_string((GLenum) (GLint) *params));
|
||||
|
||||
if (ctx->Texture.CurrentUnit >= ctx->Const.MaxTextureCoordUnits) {
|
||||
_mesa_error(ctx, GL_INVALID_OPERATION, "glTexGen(current unit)");
|
||||
|
|
|
|||
|
|
@ -1129,7 +1129,7 @@ _mesa_GetTextureImage(GLuint texture, GLint level, GLenum format,
|
|||
*/
|
||||
if (!legal_getteximage_target(ctx, texObj->Target, true)) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "glGetTextureImage(target=%s)",
|
||||
_mesa_lookup_enum_by_nr(texObj->Target));
|
||||
_mesa_enum_to_string(texObj->Target));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -1191,7 +1191,7 @@ getcompressedteximage_error_check(struct gl_context *ctx,
|
|||
if (!legal_getteximage_target(ctx, target, dsa)) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM,
|
||||
"glGetCompressedTex%sImage(target=%s)", suffix,
|
||||
_mesa_lookup_enum_by_nr(target));
|
||||
_mesa_enum_to_string(target));
|
||||
return GL_TRUE;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -2169,8 +2169,8 @@ texture_error_check( struct gl_context *ctx,
|
|||
_mesa_error(ctx, GL_INVALID_OPERATION,
|
||||
"glTexImage%dD(format = %s, internalFormat = %s)",
|
||||
dimensions,
|
||||
_mesa_lookup_enum_by_nr(format),
|
||||
_mesa_lookup_enum_by_nr(internalFormat));
|
||||
_mesa_enum_to_string(format),
|
||||
_mesa_enum_to_string(internalFormat));
|
||||
return GL_TRUE;
|
||||
}
|
||||
|
||||
|
|
@ -2180,9 +2180,9 @@ texture_error_check( struct gl_context *ctx,
|
|||
_mesa_error(ctx, err,
|
||||
"glTexImage%dD(format = %s, type = %s, internalFormat = %s)",
|
||||
dimensions,
|
||||
_mesa_lookup_enum_by_nr(format),
|
||||
_mesa_lookup_enum_by_nr(type),
|
||||
_mesa_lookup_enum_by_nr(internalFormat));
|
||||
_mesa_enum_to_string(format),
|
||||
_mesa_enum_to_string(type),
|
||||
_mesa_enum_to_string(internalFormat));
|
||||
return GL_TRUE;
|
||||
}
|
||||
}
|
||||
|
|
@ -2191,7 +2191,7 @@ texture_error_check( struct gl_context *ctx,
|
|||
if (_mesa_base_tex_format(ctx, internalFormat) < 0) {
|
||||
_mesa_error(ctx, GL_INVALID_VALUE,
|
||||
"glTexImage%dD(internalFormat=%s)",
|
||||
dimensions, _mesa_lookup_enum_by_nr(internalFormat));
|
||||
dimensions, _mesa_enum_to_string(internalFormat));
|
||||
return GL_TRUE;
|
||||
}
|
||||
|
||||
|
|
@ -2200,8 +2200,8 @@ texture_error_check( struct gl_context *ctx,
|
|||
if (err != GL_NO_ERROR) {
|
||||
_mesa_error(ctx, err,
|
||||
"glTexImage%dD(incompatible format = %s, type = %s)",
|
||||
dimensions, _mesa_lookup_enum_by_nr(format),
|
||||
_mesa_lookup_enum_by_nr(type));
|
||||
dimensions, _mesa_enum_to_string(format),
|
||||
_mesa_enum_to_string(type));
|
||||
return GL_TRUE;
|
||||
}
|
||||
|
||||
|
|
@ -2216,8 +2216,8 @@ texture_error_check( struct gl_context *ctx,
|
|||
if (!texture_formats_agree(internalFormat, format)) {
|
||||
_mesa_error(ctx, GL_INVALID_OPERATION,
|
||||
"glTexImage%dD(incompatible internalFormat = %s, format = %s)",
|
||||
dimensions, _mesa_lookup_enum_by_nr(internalFormat),
|
||||
_mesa_lookup_enum_by_nr(format));
|
||||
dimensions, _mesa_enum_to_string(internalFormat),
|
||||
_mesa_enum_to_string(format));
|
||||
return GL_TRUE;
|
||||
}
|
||||
|
||||
|
|
@ -2332,7 +2332,7 @@ compressed_texture_error_check(struct gl_context *ctx, GLint dimensions,
|
|||
if (!_mesa_is_compressed_format(ctx, internalFormat)) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM,
|
||||
"glCompressedTexImage%dD(internalFormat=%s)",
|
||||
dimensions, _mesa_lookup_enum_by_nr(internalFormat));
|
||||
dimensions, _mesa_enum_to_string(internalFormat));
|
||||
return GL_TRUE;
|
||||
}
|
||||
|
||||
|
|
@ -2490,7 +2490,7 @@ texsubimage_error_check(struct gl_context *ctx, GLuint dimensions,
|
|||
/* check target (proxies not allowed) */
|
||||
if (!legal_texsubimage_target(ctx, dimensions, target, dsa)) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "%s(target=%s)",
|
||||
callerName, _mesa_lookup_enum_by_nr(target));
|
||||
callerName, _mesa_enum_to_string(target));
|
||||
return GL_TRUE;
|
||||
}
|
||||
|
||||
|
|
@ -2509,8 +2509,8 @@ texsubimage_error_check(struct gl_context *ctx, GLuint dimensions,
|
|||
err = _mesa_es_error_check_format_and_type(format, type, dimensions);
|
||||
if (err != GL_NO_ERROR) {
|
||||
_mesa_error(ctx, err, "%s(format = %s, type = %s)",
|
||||
callerName, _mesa_lookup_enum_by_nr(format),
|
||||
_mesa_lookup_enum_by_nr(type));
|
||||
callerName, _mesa_enum_to_string(format),
|
||||
_mesa_enum_to_string(type));
|
||||
return GL_TRUE;
|
||||
}
|
||||
}
|
||||
|
|
@ -2519,8 +2519,8 @@ texsubimage_error_check(struct gl_context *ctx, GLuint dimensions,
|
|||
if (err != GL_NO_ERROR) {
|
||||
_mesa_error(ctx, err,
|
||||
"%s(incompatible format = %s, type = %s)",
|
||||
callerName, _mesa_lookup_enum_by_nr(format),
|
||||
_mesa_lookup_enum_by_nr(type));
|
||||
callerName, _mesa_enum_to_string(format),
|
||||
_mesa_enum_to_string(type));
|
||||
return GL_TRUE;
|
||||
}
|
||||
|
||||
|
|
@ -2598,7 +2598,7 @@ copytexture_error_check( struct gl_context *ctx, GLuint dimensions,
|
|||
/* check target */
|
||||
if (!legal_texsubimage_target(ctx, dimensions, target, false)) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "glCopyTexImage%uD(target=%s)",
|
||||
dimensions, _mesa_lookup_enum_by_nr(target));
|
||||
dimensions, _mesa_enum_to_string(target));
|
||||
return GL_TRUE;
|
||||
}
|
||||
|
||||
|
|
@ -2658,7 +2658,7 @@ copytexture_error_check( struct gl_context *ctx, GLuint dimensions,
|
|||
default:
|
||||
_mesa_error(ctx, GL_INVALID_VALUE,
|
||||
"glCopyTexImage%dD(internalFormat=%s)", dimensions,
|
||||
_mesa_lookup_enum_by_nr(internalFormat));
|
||||
_mesa_enum_to_string(internalFormat));
|
||||
return GL_TRUE;
|
||||
}
|
||||
}
|
||||
|
|
@ -2667,7 +2667,7 @@ copytexture_error_check( struct gl_context *ctx, GLuint dimensions,
|
|||
if (baseFormat < 0) {
|
||||
_mesa_error(ctx, GL_INVALID_OPERATION,
|
||||
"glCopyTexImage%dD(internalFormat=%s)", dimensions,
|
||||
_mesa_lookup_enum_by_nr(internalFormat));
|
||||
_mesa_enum_to_string(internalFormat));
|
||||
return GL_TRUE;
|
||||
}
|
||||
|
||||
|
|
@ -2677,7 +2677,7 @@ copytexture_error_check( struct gl_context *ctx, GLuint dimensions,
|
|||
if (rb_base_format < 0) {
|
||||
_mesa_error(ctx, GL_INVALID_VALUE,
|
||||
"glCopyTexImage%dD(internalFormat=%s)", dimensions,
|
||||
_mesa_lookup_enum_by_nr(internalFormat));
|
||||
_mesa_enum_to_string(internalFormat));
|
||||
return GL_TRUE;
|
||||
}
|
||||
}
|
||||
|
|
@ -2704,7 +2704,7 @@ copytexture_error_check( struct gl_context *ctx, GLuint dimensions,
|
|||
if (!valid) {
|
||||
_mesa_error(ctx, GL_INVALID_OPERATION,
|
||||
"glCopyTexImage%dD(internalFormat=%s)", dimensions,
|
||||
_mesa_lookup_enum_by_nr(internalFormat));
|
||||
_mesa_enum_to_string(internalFormat));
|
||||
return GL_TRUE;
|
||||
}
|
||||
}
|
||||
|
|
@ -2746,7 +2746,7 @@ copytexture_error_check( struct gl_context *ctx, GLuint dimensions,
|
|||
if(_mesa_is_enum_format_snorm(internalFormat)) {
|
||||
_mesa_error(ctx, GL_INVALID_OPERATION,
|
||||
"glCopyTexImage%dD(internalFormat=%s)", dimensions,
|
||||
_mesa_lookup_enum_by_nr(internalFormat));
|
||||
_mesa_enum_to_string(internalFormat));
|
||||
return GL_TRUE;
|
||||
}
|
||||
}
|
||||
|
|
@ -3111,8 +3111,8 @@ _mesa_choose_texture_format(struct gl_context *ctx,
|
|||
"DXT compression requested (%s), "
|
||||
"but libtxc_dxtn library not installed. Using %s "
|
||||
"instead.",
|
||||
_mesa_lookup_enum_by_nr(before),
|
||||
_mesa_lookup_enum_by_nr(internalFormat));
|
||||
_mesa_enum_to_string(before),
|
||||
_mesa_enum_to_string(internalFormat));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -3199,18 +3199,18 @@ teximage(struct gl_context *ctx, GLboolean compressed, GLuint dims,
|
|||
_mesa_debug(ctx,
|
||||
"glCompressedTexImage%uD %s %d %s %d %d %d %d %p\n",
|
||||
dims,
|
||||
_mesa_lookup_enum_by_nr(target), level,
|
||||
_mesa_lookup_enum_by_nr(internalFormat),
|
||||
_mesa_enum_to_string(target), level,
|
||||
_mesa_enum_to_string(internalFormat),
|
||||
width, height, depth, border, pixels);
|
||||
else
|
||||
_mesa_debug(ctx,
|
||||
"glTexImage%uD %s %d %s %d %d %d %d %s %s %p\n",
|
||||
dims,
|
||||
_mesa_lookup_enum_by_nr(target), level,
|
||||
_mesa_lookup_enum_by_nr(internalFormat),
|
||||
_mesa_enum_to_string(target), level,
|
||||
_mesa_enum_to_string(internalFormat),
|
||||
width, height, depth, border,
|
||||
_mesa_lookup_enum_by_nr(format),
|
||||
_mesa_lookup_enum_by_nr(type), pixels);
|
||||
_mesa_enum_to_string(format),
|
||||
_mesa_enum_to_string(type), pixels);
|
||||
}
|
||||
|
||||
internalFormat = override_internal_format(internalFormat, width, height);
|
||||
|
|
@ -3218,7 +3218,7 @@ teximage(struct gl_context *ctx, GLboolean compressed, GLuint dims,
|
|||
/* target error checking */
|
||||
if (!legal_teximage_target(ctx, dims, target)) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "%s%uD(target=%s)",
|
||||
func, dims, _mesa_lookup_enum_by_nr(target));
|
||||
func, dims, _mesa_enum_to_string(target));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -3330,7 +3330,7 @@ teximage(struct gl_context *ctx, GLboolean compressed, GLuint dims,
|
|||
_mesa_error(ctx, GL_OUT_OF_MEMORY,
|
||||
"glTexImage%uD(image too large: %d x %d x %d, %s format)",
|
||||
dims, width, height, depth,
|
||||
_mesa_lookup_enum_by_nr(internalFormat));
|
||||
_mesa_enum_to_string(internalFormat));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -3527,7 +3527,7 @@ _mesa_texture_sub_image(struct gl_context *ctx, GLuint dims,
|
|||
if (!legal_texsubimage_target(ctx, dims, target, dsa)) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "glTex%sSubImage%uD(target=%s)",
|
||||
dsa ? "ture" : "",
|
||||
dims, _mesa_lookup_enum_by_nr(target));
|
||||
dims, _mesa_enum_to_string(target));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -3597,10 +3597,10 @@ texsubimage(struct gl_context *ctx, GLuint dims, GLenum target, GLint level,
|
|||
if (MESA_VERBOSE & (VERBOSE_API|VERBOSE_TEXTURE))
|
||||
_mesa_debug(ctx, "glTexSubImage%uD %s %d %d %d %d %d %d %d %s %s %p\n",
|
||||
dims,
|
||||
_mesa_lookup_enum_by_nr(target), level,
|
||||
_mesa_enum_to_string(target), level,
|
||||
xoffset, yoffset, zoffset, width, height, depth,
|
||||
_mesa_lookup_enum_by_nr(format),
|
||||
_mesa_lookup_enum_by_nr(type), pixels);
|
||||
_mesa_enum_to_string(format),
|
||||
_mesa_enum_to_string(type), pixels);
|
||||
|
||||
_mesa_texture_sub_image(ctx, dims, texObj, texImage, target, level,
|
||||
xoffset, yoffset, zoffset, width, height, depth,
|
||||
|
|
@ -3629,8 +3629,8 @@ texturesubimage(struct gl_context *ctx, GLuint dims,
|
|||
"glTextureSubImage%uD %d %d %d %d %d %d %d %d %s %s %p\n",
|
||||
dims, texture, level,
|
||||
xoffset, yoffset, zoffset, width, height, depth,
|
||||
_mesa_lookup_enum_by_nr(format),
|
||||
_mesa_lookup_enum_by_nr(type), pixels);
|
||||
_mesa_enum_to_string(format),
|
||||
_mesa_enum_to_string(type), pixels);
|
||||
|
||||
/* Get the texture object by Name. */
|
||||
texObj = _mesa_lookup_texture(ctx, texture);
|
||||
|
|
@ -3891,8 +3891,8 @@ copyteximage(struct gl_context *ctx, GLuint dims,
|
|||
if (MESA_VERBOSE & (VERBOSE_API|VERBOSE_TEXTURE))
|
||||
_mesa_debug(ctx, "glCopyTexImage%uD %s %d %s %d %d %d %d %d\n",
|
||||
dims,
|
||||
_mesa_lookup_enum_by_nr(target), level,
|
||||
_mesa_lookup_enum_by_nr(internalFormat),
|
||||
_mesa_enum_to_string(target), level,
|
||||
_mesa_enum_to_string(internalFormat),
|
||||
x, y, width, height, border);
|
||||
|
||||
if (ctx->NewState & NEW_COPY_TEX_STATE)
|
||||
|
|
@ -4051,7 +4051,7 @@ _mesa_copy_texture_sub_image(struct gl_context *ctx, GLuint dims,
|
|||
|
||||
if (MESA_VERBOSE & (VERBOSE_API|VERBOSE_TEXTURE))
|
||||
_mesa_debug(ctx, "%s %s %d %d %d %d %d %d %d %d\n", caller,
|
||||
_mesa_lookup_enum_by_nr(target),
|
||||
_mesa_enum_to_string(target),
|
||||
level, xoffset, yoffset, zoffset, x, y, width, height);
|
||||
|
||||
if (ctx->NewState & NEW_COPY_TEX_STATE)
|
||||
|
|
@ -4113,7 +4113,7 @@ _mesa_CopyTexSubImage1D( GLenum target, GLint level,
|
|||
*/
|
||||
if (!legal_texsubimage_target(ctx, 1, target, false)) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "%s(invalid target %s)", self,
|
||||
_mesa_lookup_enum_by_nr(target));
|
||||
_mesa_enum_to_string(target));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -4141,7 +4141,7 @@ _mesa_CopyTexSubImage2D( GLenum target, GLint level,
|
|||
*/
|
||||
if (!legal_texsubimage_target(ctx, 2, target, false)) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "%s(invalid target %s)", self,
|
||||
_mesa_lookup_enum_by_nr(target));
|
||||
_mesa_enum_to_string(target));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -4170,7 +4170,7 @@ _mesa_CopyTexSubImage3D( GLenum target, GLint level,
|
|||
*/
|
||||
if (!legal_texsubimage_target(ctx, 3, target, false)) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "%s(invalid target %s)", self,
|
||||
_mesa_lookup_enum_by_nr(target));
|
||||
_mesa_enum_to_string(target));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -4198,7 +4198,7 @@ _mesa_CopyTextureSubImage1D(GLuint texture, GLint level,
|
|||
/* Check target (proxies not allowed). */
|
||||
if (!legal_texsubimage_target(ctx, 1, texObj->Target, true)) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "%s(invalid target %s)", self,
|
||||
_mesa_lookup_enum_by_nr(texObj->Target));
|
||||
_mesa_enum_to_string(texObj->Target));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -4222,7 +4222,7 @@ _mesa_CopyTextureSubImage2D(GLuint texture, GLint level,
|
|||
/* Check target (proxies not allowed). */
|
||||
if (!legal_texsubimage_target(ctx, 2, texObj->Target, true)) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "%s(invalid target %s)", self,
|
||||
_mesa_lookup_enum_by_nr(texObj->Target));
|
||||
_mesa_enum_to_string(texObj->Target));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -4249,7 +4249,7 @@ _mesa_CopyTextureSubImage3D(GLuint texture, GLint level,
|
|||
/* Check target (proxies not allowed). */
|
||||
if (!legal_texsubimage_target(ctx, 3, texObj->Target, true)) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "%s(invalid target %s)", self,
|
||||
_mesa_lookup_enum_by_nr(texObj->Target));
|
||||
_mesa_enum_to_string(texObj->Target));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -4296,8 +4296,8 @@ check_clear_tex_image(struct gl_context *ctx,
|
|||
_mesa_error(ctx, err,
|
||||
"%s(incompatible format = %s, type = %s)",
|
||||
function,
|
||||
_mesa_lookup_enum_by_nr(format),
|
||||
_mesa_lookup_enum_by_nr(type));
|
||||
_mesa_enum_to_string(format),
|
||||
_mesa_enum_to_string(type));
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
@ -4306,8 +4306,8 @@ check_clear_tex_image(struct gl_context *ctx,
|
|||
_mesa_error(ctx, GL_INVALID_OPERATION,
|
||||
"%s(incompatible internalFormat = %s, format = %s)",
|
||||
function,
|
||||
_mesa_lookup_enum_by_nr(internalFormat),
|
||||
_mesa_lookup_enum_by_nr(format));
|
||||
_mesa_enum_to_string(internalFormat),
|
||||
_mesa_enum_to_string(format));
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
@ -4549,7 +4549,7 @@ compressed_subtexture_target_check(struct gl_context *ctx, GLenum target,
|
|||
|
||||
if (dsa && target == GL_TEXTURE_RECTANGLE) {
|
||||
_mesa_error(ctx, GL_INVALID_OPERATION, "%s(invalid target %s)", caller,
|
||||
_mesa_lookup_enum_by_nr(target));
|
||||
_mesa_enum_to_string(target));
|
||||
return GL_TRUE;
|
||||
}
|
||||
|
||||
|
|
@ -4604,8 +4604,8 @@ compressed_subtexture_target_check(struct gl_context *ctx, GLenum target,
|
|||
if (invalidformat) {
|
||||
_mesa_error(ctx, GL_INVALID_OPERATION,
|
||||
"%s(invalid target %s for format %s)", caller,
|
||||
_mesa_lookup_enum_by_nr(target),
|
||||
_mesa_lookup_enum_by_nr(format));
|
||||
_mesa_enum_to_string(target),
|
||||
_mesa_enum_to_string(format));
|
||||
return GL_TRUE;
|
||||
}
|
||||
}
|
||||
|
|
@ -4620,7 +4620,7 @@ compressed_subtexture_target_check(struct gl_context *ctx, GLenum target,
|
|||
|
||||
if (!targetOK) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "%s(invalid target %s)", caller,
|
||||
_mesa_lookup_enum_by_nr(target));
|
||||
_mesa_enum_to_string(target));
|
||||
return GL_TRUE;
|
||||
}
|
||||
|
||||
|
|
@ -5604,14 +5604,14 @@ _mesa_texture_image_multisample(struct gl_context *ctx, GLuint dims,
|
|||
if (immutable && !_mesa_is_legal_tex_storage_format(ctx, internalformat)) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM,
|
||||
"%s(internalformat=%s not legal for immutable-format)",
|
||||
func, _mesa_lookup_enum_by_nr(internalformat));
|
||||
func, _mesa_enum_to_string(internalformat));
|
||||
return;
|
||||
}
|
||||
|
||||
if (!is_renderable_texture_format(ctx, internalformat)) {
|
||||
_mesa_error(ctx, GL_INVALID_OPERATION,
|
||||
"%s(internalformat=%s)",
|
||||
func, _mesa_lookup_enum_by_nr(internalformat));
|
||||
func, _mesa_enum_to_string(internalformat));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1255,7 +1255,7 @@ create_textures(struct gl_context *ctx, GLenum target,
|
|||
if (targetIndex < 0) { /* Bad Target */
|
||||
mtx_unlock(&ctx->Shared->Mutex);
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "gl%sTextures(target = %s)",
|
||||
func, _mesa_lookup_enum_by_nr(texObj->Target));
|
||||
func, _mesa_enum_to_string(texObj->Target));
|
||||
return;
|
||||
}
|
||||
assert(targetIndex < NUM_TEXTURE_TARGETS);
|
||||
|
|
@ -1642,7 +1642,7 @@ _mesa_BindTexture( GLenum target, GLuint texName )
|
|||
|
||||
if (MESA_VERBOSE & (VERBOSE_API|VERBOSE_TEXTURE))
|
||||
_mesa_debug(ctx, "glBindTexture %s %d\n",
|
||||
_mesa_lookup_enum_by_nr(target), (GLint) texName);
|
||||
_mesa_enum_to_string(target), (GLint) texName);
|
||||
|
||||
targetIndex = _mesa_tex_target_to_index(ctx, target);
|
||||
if (targetIndex < 0) {
|
||||
|
|
@ -1806,7 +1806,7 @@ _mesa_BindTextureUnit(GLuint unit, GLuint texture)
|
|||
|
||||
if (MESA_VERBOSE & (VERBOSE_API|VERBOSE_TEXTURE))
|
||||
_mesa_debug(ctx, "glBindTextureUnit %s %d\n",
|
||||
_mesa_lookup_enum_by_nr(GL_TEXTURE0+unit), (GLint) texture);
|
||||
_mesa_enum_to_string(GL_TEXTURE0+unit), (GLint) texture);
|
||||
|
||||
/* Section 8.1 (Texture Objects) of the OpenGL 4.5 core profile spec
|
||||
* (20141030) says:
|
||||
|
|
|
|||
|
|
@ -381,7 +381,7 @@ set_tex_parameteri(struct gl_context *ctx,
|
|||
if (texObj->Target == GL_TEXTURE_RECTANGLE_ARB && params[0] != 0) {
|
||||
_mesa_error(ctx, GL_INVALID_OPERATION,
|
||||
"glTex%sParameter(target=%s, param=%d)", suffix,
|
||||
_mesa_lookup_enum_by_nr(texObj->Target), params[0]);
|
||||
_mesa_enum_to_string(texObj->Target), params[0]);
|
||||
return GL_FALSE;
|
||||
}
|
||||
incomplete(ctx, texObj);
|
||||
|
|
@ -610,22 +610,22 @@ set_tex_parameteri(struct gl_context *ctx,
|
|||
|
||||
invalid_pname:
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "glTex%sParameter(pname=%s)",
|
||||
suffix, _mesa_lookup_enum_by_nr(pname));
|
||||
suffix, _mesa_enum_to_string(pname));
|
||||
return GL_FALSE;
|
||||
|
||||
invalid_param:
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "glTex%sParameter(param=%s)",
|
||||
suffix, _mesa_lookup_enum_by_nr(params[0]));
|
||||
suffix, _mesa_enum_to_string(params[0]));
|
||||
return GL_FALSE;
|
||||
|
||||
invalid_operation:
|
||||
_mesa_error(ctx, GL_INVALID_OPERATION, "glTex%sParameter(pname=%s)",
|
||||
suffix, _mesa_lookup_enum_by_nr(pname));
|
||||
suffix, _mesa_enum_to_string(pname));
|
||||
return GL_FALSE;
|
||||
|
||||
invalid_enum:
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "glTex%sParameter(pname=%s)",
|
||||
suffix, _mesa_lookup_enum_by_nr(pname));
|
||||
suffix, _mesa_enum_to_string(pname));
|
||||
return GL_FALSE;
|
||||
}
|
||||
|
||||
|
|
@ -745,12 +745,12 @@ set_tex_parameterf(struct gl_context *ctx,
|
|||
|
||||
invalid_pname:
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "glTex%sParameter(pname=%s)",
|
||||
suffix, _mesa_lookup_enum_by_nr(pname));
|
||||
suffix, _mesa_enum_to_string(pname));
|
||||
return GL_FALSE;
|
||||
|
||||
invalid_enum:
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "glTex%sParameter(pname=%s)",
|
||||
suffix, _mesa_lookup_enum_by_nr(pname));
|
||||
suffix, _mesa_enum_to_string(pname));
|
||||
return GL_FALSE;
|
||||
}
|
||||
|
||||
|
|
@ -1395,7 +1395,7 @@ get_tex_level_parameter_image(struct gl_context *ctx,
|
|||
else {
|
||||
_mesa_error(ctx, GL_INVALID_OPERATION,
|
||||
"glGetTex%sLevelParameter[if]v(pname=%s)", suffix,
|
||||
_mesa_lookup_enum_by_nr(pname));
|
||||
_mesa_enum_to_string(pname));
|
||||
}
|
||||
break;
|
||||
case GL_TEXTURE_COMPRESSED:
|
||||
|
|
@ -1444,7 +1444,7 @@ get_tex_level_parameter_image(struct gl_context *ctx,
|
|||
invalid_pname:
|
||||
_mesa_error(ctx, GL_INVALID_ENUM,
|
||||
"glGetTex%sLevelParameter[if]v(pname=%s)", suffix,
|
||||
_mesa_lookup_enum_by_nr(pname));
|
||||
_mesa_enum_to_string(pname));
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -1528,7 +1528,7 @@ get_tex_level_parameter_buffer(struct gl_context *ctx,
|
|||
/* Always illegal for GL_TEXTURE_BUFFER */
|
||||
_mesa_error(ctx, GL_INVALID_OPERATION,
|
||||
"glGetTex%sLevelParameter[if]v(pname=%s)", suffix,
|
||||
_mesa_lookup_enum_by_nr(pname));
|
||||
_mesa_enum_to_string(pname));
|
||||
break;
|
||||
|
||||
/* GL_ARB_texture_float */
|
||||
|
|
@ -1557,7 +1557,7 @@ get_tex_level_parameter_buffer(struct gl_context *ctx,
|
|||
invalid_pname:
|
||||
_mesa_error(ctx, GL_INVALID_ENUM,
|
||||
"glGetTex%sLevelParameter[if]v(pname=%s)", suffix,
|
||||
_mesa_lookup_enum_by_nr(pname));
|
||||
_mesa_enum_to_string(pname));
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -1586,7 +1586,7 @@ get_tex_level_parameteriv(struct gl_context *ctx,
|
|||
if (!legal_get_tex_level_parameter_target(ctx, target, dsa)) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM,
|
||||
"glGetTex%sLevelParameter[if]v(target=%s)", suffix,
|
||||
_mesa_lookup_enum_by_nr(target));
|
||||
_mesa_enum_to_string(target));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -123,21 +123,21 @@ _mesa_print_texunit_state( struct gl_context *ctx, GLuint unit )
|
|||
{
|
||||
const struct gl_texture_unit *texUnit = ctx->Texture.Unit + unit;
|
||||
printf("Texture Unit %d\n", unit);
|
||||
printf(" GL_TEXTURE_ENV_MODE = %s\n", _mesa_lookup_enum_by_nr(texUnit->EnvMode));
|
||||
printf(" GL_COMBINE_RGB = %s\n", _mesa_lookup_enum_by_nr(texUnit->Combine.ModeRGB));
|
||||
printf(" GL_COMBINE_ALPHA = %s\n", _mesa_lookup_enum_by_nr(texUnit->Combine.ModeA));
|
||||
printf(" GL_SOURCE0_RGB = %s\n", _mesa_lookup_enum_by_nr(texUnit->Combine.SourceRGB[0]));
|
||||
printf(" GL_SOURCE1_RGB = %s\n", _mesa_lookup_enum_by_nr(texUnit->Combine.SourceRGB[1]));
|
||||
printf(" GL_SOURCE2_RGB = %s\n", _mesa_lookup_enum_by_nr(texUnit->Combine.SourceRGB[2]));
|
||||
printf(" GL_SOURCE0_ALPHA = %s\n", _mesa_lookup_enum_by_nr(texUnit->Combine.SourceA[0]));
|
||||
printf(" GL_SOURCE1_ALPHA = %s\n", _mesa_lookup_enum_by_nr(texUnit->Combine.SourceA[1]));
|
||||
printf(" GL_SOURCE2_ALPHA = %s\n", _mesa_lookup_enum_by_nr(texUnit->Combine.SourceA[2]));
|
||||
printf(" GL_OPERAND0_RGB = %s\n", _mesa_lookup_enum_by_nr(texUnit->Combine.OperandRGB[0]));
|
||||
printf(" GL_OPERAND1_RGB = %s\n", _mesa_lookup_enum_by_nr(texUnit->Combine.OperandRGB[1]));
|
||||
printf(" GL_OPERAND2_RGB = %s\n", _mesa_lookup_enum_by_nr(texUnit->Combine.OperandRGB[2]));
|
||||
printf(" GL_OPERAND0_ALPHA = %s\n", _mesa_lookup_enum_by_nr(texUnit->Combine.OperandA[0]));
|
||||
printf(" GL_OPERAND1_ALPHA = %s\n", _mesa_lookup_enum_by_nr(texUnit->Combine.OperandA[1]));
|
||||
printf(" GL_OPERAND2_ALPHA = %s\n", _mesa_lookup_enum_by_nr(texUnit->Combine.OperandA[2]));
|
||||
printf(" GL_TEXTURE_ENV_MODE = %s\n", _mesa_enum_to_string(texUnit->EnvMode));
|
||||
printf(" GL_COMBINE_RGB = %s\n", _mesa_enum_to_string(texUnit->Combine.ModeRGB));
|
||||
printf(" GL_COMBINE_ALPHA = %s\n", _mesa_enum_to_string(texUnit->Combine.ModeA));
|
||||
printf(" GL_SOURCE0_RGB = %s\n", _mesa_enum_to_string(texUnit->Combine.SourceRGB[0]));
|
||||
printf(" GL_SOURCE1_RGB = %s\n", _mesa_enum_to_string(texUnit->Combine.SourceRGB[1]));
|
||||
printf(" GL_SOURCE2_RGB = %s\n", _mesa_enum_to_string(texUnit->Combine.SourceRGB[2]));
|
||||
printf(" GL_SOURCE0_ALPHA = %s\n", _mesa_enum_to_string(texUnit->Combine.SourceA[0]));
|
||||
printf(" GL_SOURCE1_ALPHA = %s\n", _mesa_enum_to_string(texUnit->Combine.SourceA[1]));
|
||||
printf(" GL_SOURCE2_ALPHA = %s\n", _mesa_enum_to_string(texUnit->Combine.SourceA[2]));
|
||||
printf(" GL_OPERAND0_RGB = %s\n", _mesa_enum_to_string(texUnit->Combine.OperandRGB[0]));
|
||||
printf(" GL_OPERAND1_RGB = %s\n", _mesa_enum_to_string(texUnit->Combine.OperandRGB[1]));
|
||||
printf(" GL_OPERAND2_RGB = %s\n", _mesa_enum_to_string(texUnit->Combine.OperandRGB[2]));
|
||||
printf(" GL_OPERAND0_ALPHA = %s\n", _mesa_enum_to_string(texUnit->Combine.OperandA[0]));
|
||||
printf(" GL_OPERAND1_ALPHA = %s\n", _mesa_enum_to_string(texUnit->Combine.OperandA[1]));
|
||||
printf(" GL_OPERAND2_ALPHA = %s\n", _mesa_enum_to_string(texUnit->Combine.OperandA[2]));
|
||||
printf(" GL_RGB_SCALE = %d\n", 1 << texUnit->Combine.ScaleShiftRGB);
|
||||
printf(" GL_ALPHA_SCALE = %d\n", 1 << texUnit->Combine.ScaleShiftA);
|
||||
printf(" GL_TEXTURE_ENV_COLOR = (%f, %f, %f, %f)\n", texUnit->EnvColor[0], texUnit->EnvColor[1], texUnit->EnvColor[2], texUnit->EnvColor[3]);
|
||||
|
|
@ -295,11 +295,11 @@ _mesa_ActiveTexture(GLenum texture)
|
|||
|
||||
if (MESA_VERBOSE & (VERBOSE_API|VERBOSE_TEXTURE))
|
||||
_mesa_debug(ctx, "glActiveTexture %s\n",
|
||||
_mesa_lookup_enum_by_nr(texture));
|
||||
_mesa_enum_to_string(texture));
|
||||
|
||||
if (texUnit >= k) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "glActiveTexture(texture=%s)",
|
||||
_mesa_lookup_enum_by_nr(texture));
|
||||
_mesa_enum_to_string(texture));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -325,7 +325,7 @@ _mesa_ClientActiveTexture(GLenum texture)
|
|||
|
||||
if (MESA_VERBOSE & (VERBOSE_API | VERBOSE_TEXTURE))
|
||||
_mesa_debug(ctx, "glClientActiveTexture %s\n",
|
||||
_mesa_lookup_enum_by_nr(texture));
|
||||
_mesa_enum_to_string(texture));
|
||||
|
||||
if (texUnit >= ctx->Const.MaxTextureCoordUnits) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "glClientActiveTexture(texture)");
|
||||
|
|
|
|||
|
|
@ -77,7 +77,7 @@ _mesa_get_tex_unit_err(struct gl_context *ctx, GLuint unit, const char *func)
|
|||
* implementation."
|
||||
*/
|
||||
_mesa_error(ctx, GL_INVALID_OPERATION, "%s(unit=%s)", func,
|
||||
_mesa_lookup_enum_by_nr(GL_TEXTURE0+unit));
|
||||
_mesa_enum_to_string(GL_TEXTURE0+unit));
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -308,7 +308,7 @@ tex_storage_error_check(struct gl_context *ctx,
|
|||
_mesa_error(ctx, _mesa_is_desktop_gl(ctx)?
|
||||
GL_INVALID_ENUM : GL_INVALID_OPERATION,
|
||||
"glTex%sStorage%dD(internalformat = %s)", suffix, dims,
|
||||
_mesa_lookup_enum_by_nr(internalformat));
|
||||
_mesa_enum_to_string(internalformat));
|
||||
return GL_TRUE;
|
||||
}
|
||||
|
||||
|
|
@ -465,21 +465,21 @@ texstorage(GLuint dims, GLenum target, GLsizei levels, GLenum internalformat,
|
|||
if (!legal_texobj_target(ctx, dims, target)) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM,
|
||||
"glTexStorage%uD(illegal target=%s)",
|
||||
dims, _mesa_lookup_enum_by_nr(target));
|
||||
dims, _mesa_enum_to_string(target));
|
||||
return;
|
||||
}
|
||||
|
||||
if (MESA_VERBOSE & (VERBOSE_API|VERBOSE_TEXTURE))
|
||||
_mesa_debug(ctx, "glTexStorage%uD %s %d %s %d %d %d\n",
|
||||
dims,
|
||||
_mesa_lookup_enum_by_nr(target), levels,
|
||||
_mesa_lookup_enum_by_nr(internalformat),
|
||||
_mesa_enum_to_string(target), levels,
|
||||
_mesa_enum_to_string(internalformat),
|
||||
width, height, depth);
|
||||
/* Check the format to make sure it is sized. */
|
||||
if (!_mesa_is_legal_tex_storage_format(ctx, internalformat)) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM,
|
||||
"glTexStorage%uD(internalformat = %s)", dims,
|
||||
_mesa_lookup_enum_by_nr(internalformat));
|
||||
_mesa_enum_to_string(internalformat));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -505,14 +505,14 @@ texturestorage(GLuint dims, GLuint texture, GLsizei levels,
|
|||
if (MESA_VERBOSE & (VERBOSE_API|VERBOSE_TEXTURE))
|
||||
_mesa_debug(ctx, "glTextureStorage%uD %d %d %s %d %d %d\n",
|
||||
dims, texture, levels,
|
||||
_mesa_lookup_enum_by_nr(internalformat),
|
||||
_mesa_enum_to_string(internalformat),
|
||||
width, height, depth);
|
||||
|
||||
/* Check the format to make sure it is sized. */
|
||||
if (!_mesa_is_legal_tex_storage_format(ctx, internalformat)) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM,
|
||||
"glTextureStorage%uD(internalformat = %s)", dims,
|
||||
_mesa_lookup_enum_by_nr(internalformat));
|
||||
_mesa_enum_to_string(internalformat));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -530,7 +530,7 @@ texturestorage(GLuint dims, GLuint texture, GLsizei levels,
|
|||
if (!legal_texobj_target(ctx, dims, texObj->Target)) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM,
|
||||
"glTextureStorage%uD(illegal target=%s)",
|
||||
dims, _mesa_lookup_enum_by_nr(texObj->Target));
|
||||
dims, _mesa_enum_to_string(texObj->Target));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -313,7 +313,7 @@ target_valid(struct gl_context *ctx, GLenum origTarget, GLenum newTarget)
|
|||
}
|
||||
_mesa_error(ctx, GL_INVALID_OPERATION,
|
||||
"glTextureView(illegal target=%s)",
|
||||
_mesa_lookup_enum_by_nr(newTarget));
|
||||
_mesa_enum_to_string(newTarget));
|
||||
return false;
|
||||
}
|
||||
#undef RETURN_IF_SUPPORTED
|
||||
|
|
@ -435,8 +435,8 @@ _mesa_TextureView(GLuint texture, GLenum target, GLuint origtexture,
|
|||
|
||||
if (MESA_VERBOSE & (VERBOSE_API | VERBOSE_TEXTURE))
|
||||
_mesa_debug(ctx, "glTextureView %d %s %d %s %d %d %d %d\n",
|
||||
texture, _mesa_lookup_enum_by_nr(target), origtexture,
|
||||
_mesa_lookup_enum_by_nr(internalformat),
|
||||
texture, _mesa_enum_to_string(target), origtexture,
|
||||
_mesa_enum_to_string(internalformat),
|
||||
minlevel, numlevels, minlayer, numlayers);
|
||||
|
||||
if (origtexture == 0) {
|
||||
|
|
@ -523,8 +523,8 @@ _mesa_TextureView(GLuint texture, GLenum target, GLuint origtexture,
|
|||
internalformat)) {
|
||||
_mesa_error(ctx, GL_INVALID_OPERATION,
|
||||
"glTextureView(internalformat %s not compatible with origtexture %s)",
|
||||
_mesa_lookup_enum_by_nr(internalformat),
|
||||
_mesa_lookup_enum_by_nr(origTexObj->Image[0][0]->InternalFormat));
|
||||
_mesa_enum_to_string(internalformat),
|
||||
_mesa_enum_to_string(origTexObj->Image[0][0]->InternalFormat));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1113,7 +1113,7 @@ mesa_bufferiv(struct gl_shader_program *shProg, GLenum type,
|
|||
default:
|
||||
_mesa_error(ctx, GL_INVALID_ENUM,
|
||||
"%s(pname 0x%x (%s))", caller, pname,
|
||||
_mesa_lookup_enum_by_nr(pname));
|
||||
_mesa_enum_to_string(pname));
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -300,7 +300,7 @@ update_array_format(struct gl_context *ctx,
|
|||
typeBit = type_to_bit(ctx, type);
|
||||
if (typeBit == 0x0 || (typeBit & legalTypesMask) == 0x0) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM, "%s(type = %s)",
|
||||
func, _mesa_lookup_enum_by_nr(type));
|
||||
func, _mesa_enum_to_string(type));
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
@ -333,7 +333,7 @@ update_array_format(struct gl_context *ctx,
|
|||
|
||||
if (bgra_error) {
|
||||
_mesa_error(ctx, GL_INVALID_OPERATION, "%s(size=GL_BGRA and type=%s)",
|
||||
func, _mesa_lookup_enum_by_nr(type));
|
||||
func, _mesa_enum_to_string(type));
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
@ -2310,7 +2310,7 @@ print_array(const char *name, GLint index, const struct gl_client_array *array)
|
|||
else
|
||||
fprintf(stderr, " %s: ", name);
|
||||
fprintf(stderr, "Ptr=%p, Type=%s, Size=%d, ElemSize=%u, Stride=%d, Buffer=%u(Size %lu)\n",
|
||||
array->Ptr, _mesa_lookup_enum_by_nr(array->Type), array->Size,
|
||||
array->Ptr, _mesa_enum_to_string(array->Type), array->Size,
|
||||
array->_ElementSize, array->StrideB, array->BufferObj->Name,
|
||||
(unsigned long) array->BufferObj->Size);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -391,8 +391,8 @@ _mesa_ClipControl(GLenum origin, GLenum depth)
|
|||
|
||||
if (MESA_VERBOSE&VERBOSE_API)
|
||||
_mesa_debug(ctx, "glClipControl(%s, %s)\n",
|
||||
_mesa_lookup_enum_by_nr(origin),
|
||||
_mesa_lookup_enum_by_nr(depth));
|
||||
_mesa_enum_to_string(origin),
|
||||
_mesa_enum_to_string(depth));
|
||||
|
||||
ASSERT_OUTSIDE_BEGIN_END(ctx);
|
||||
|
||||
|
|
|
|||
|
|
@ -451,7 +451,7 @@ void _tnl_draw_prims(struct gl_context *ctx,
|
|||
printf("%s %d..%d\n", __func__, min_index, max_index);
|
||||
for (i = 0; i < nr_prims; i++)
|
||||
printf("prim %d: %s start %d count %d\n", i,
|
||||
_mesa_lookup_enum_by_nr(prim[i].mode),
|
||||
_mesa_enum_to_string(prim[i].mode),
|
||||
prim[i].start,
|
||||
prim[i].count);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -315,7 +315,7 @@ static GLboolean run_render( struct gl_context *ctx,
|
|||
|
||||
if (MESA_VERBOSE & VERBOSE_PRIMS)
|
||||
_mesa_debug(NULL, "MESA prim %s %d..%d\n",
|
||||
_mesa_lookup_enum_by_nr(prim & PRIM_MODE_MASK),
|
||||
_mesa_enum_to_string(prim & PRIM_MODE_MASK),
|
||||
start, start+length);
|
||||
|
||||
if (length)
|
||||
|
|
|
|||
|
|
@ -592,7 +592,7 @@ static GLboolean build_vertex_emit( struct x86_program *p )
|
|||
break;
|
||||
case GL_UNSIGNED_SHORT:
|
||||
default:
|
||||
printf("unknown CHAN_TYPE %s\n", _mesa_lookup_enum_by_nr(CHAN_TYPE));
|
||||
printf("unknown CHAN_TYPE %s\n", _mesa_enum_to_string(CHAN_TYPE));
|
||||
return GL_FALSE;
|
||||
}
|
||||
break;
|
||||
|
|
|
|||
|
|
@ -1256,7 +1256,7 @@ static GLboolean TAG(validate_render)( struct gl_context *ctx,
|
|||
}
|
||||
|
||||
if (!ok) {
|
||||
/* fprintf(stderr, "not ok %s\n", _mesa_lookup_enum_by_nr(prim & PRIM_MODE_MASK)); */
|
||||
/* fprintf(stderr, "not ok %s\n", _mesa_enum_to_string(prim & PRIM_MODE_MASK)); */
|
||||
return GL_FALSE;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -60,7 +60,7 @@ static void TAG(unfilled_tri)( struct gl_context *ctx,
|
|||
}
|
||||
|
||||
/* fprintf(stderr, "%s %s %d %d %d\n", __func__, */
|
||||
/* _mesa_lookup_enum_by_nr( mode ), */
|
||||
/* _mesa_enum_to_string( mode ), */
|
||||
/* ef[e0], ef[e1], ef[e2]); */
|
||||
|
||||
if (mode == GL_POINT) {
|
||||
|
|
|
|||
|
|
@ -786,7 +786,7 @@ vbo_exec_DrawArrays(GLenum mode, GLint start, GLsizei count)
|
|||
|
||||
if (MESA_VERBOSE & VERBOSE_DRAW)
|
||||
_mesa_debug(ctx, "glDrawArrays(%s, %d, %d)\n",
|
||||
_mesa_lookup_enum_by_nr(mode), start, count);
|
||||
_mesa_enum_to_string(mode), start, count);
|
||||
|
||||
if (!_mesa_validate_DrawArrays(ctx, mode, count))
|
||||
return;
|
||||
|
|
@ -813,7 +813,7 @@ vbo_exec_DrawArraysInstanced(GLenum mode, GLint start, GLsizei count,
|
|||
|
||||
if (MESA_VERBOSE & VERBOSE_DRAW)
|
||||
_mesa_debug(ctx, "glDrawArraysInstanced(%s, %d, %d, %d)\n",
|
||||
_mesa_lookup_enum_by_nr(mode), start, count, numInstances);
|
||||
_mesa_enum_to_string(mode), start, count, numInstances);
|
||||
|
||||
if (!_mesa_validate_DrawArraysInstanced(ctx, mode, start, count, numInstances))
|
||||
return;
|
||||
|
|
@ -839,7 +839,7 @@ vbo_exec_DrawArraysInstancedBaseInstance(GLenum mode, GLint first, GLsizei count
|
|||
|
||||
if (MESA_VERBOSE & VERBOSE_DRAW)
|
||||
_mesa_debug(ctx, "glDrawArraysInstancedBaseInstance(%s, %d, %d, %d, %d)\n",
|
||||
_mesa_lookup_enum_by_nr(mode), first, count,
|
||||
_mesa_enum_to_string(mode), first, count,
|
||||
numInstances, baseInstance);
|
||||
|
||||
if (!_mesa_validate_DrawArraysInstanced(ctx, mode, first, count,
|
||||
|
|
@ -1021,8 +1021,8 @@ vbo_exec_DrawRangeElementsBaseVertex(GLenum mode,
|
|||
if (MESA_VERBOSE & VERBOSE_DRAW)
|
||||
_mesa_debug(ctx,
|
||||
"glDrawRangeElementsBaseVertex(%s, %u, %u, %d, %s, %p, %d)\n",
|
||||
_mesa_lookup_enum_by_nr(mode), start, end, count,
|
||||
_mesa_lookup_enum_by_nr(type), indices, basevertex);
|
||||
_mesa_enum_to_string(mode), start, end, count,
|
||||
_mesa_enum_to_string(type), indices, basevertex);
|
||||
|
||||
if (!_mesa_validate_DrawRangeElements(ctx, mode, start, end, count,
|
||||
type, indices))
|
||||
|
|
@ -1099,8 +1099,8 @@ vbo_exec_DrawRangeElements(GLenum mode, GLuint start, GLuint end,
|
|||
GET_CURRENT_CONTEXT(ctx);
|
||||
_mesa_debug(ctx,
|
||||
"glDrawRangeElements(%s, %u, %u, %d, %s, %p)\n",
|
||||
_mesa_lookup_enum_by_nr(mode), start, end, count,
|
||||
_mesa_lookup_enum_by_nr(type), indices);
|
||||
_mesa_enum_to_string(mode), start, end, count,
|
||||
_mesa_enum_to_string(type), indices);
|
||||
}
|
||||
|
||||
vbo_exec_DrawRangeElementsBaseVertex(mode, start, end, count, type,
|
||||
|
|
@ -1119,8 +1119,8 @@ vbo_exec_DrawElements(GLenum mode, GLsizei count, GLenum type,
|
|||
|
||||
if (MESA_VERBOSE & VERBOSE_DRAW)
|
||||
_mesa_debug(ctx, "glDrawElements(%s, %u, %s, %p)\n",
|
||||
_mesa_lookup_enum_by_nr(mode), count,
|
||||
_mesa_lookup_enum_by_nr(type), indices);
|
||||
_mesa_enum_to_string(mode), count,
|
||||
_mesa_enum_to_string(type), indices);
|
||||
|
||||
if (!_mesa_validate_DrawElements(ctx, mode, count, type, indices))
|
||||
return;
|
||||
|
|
@ -1141,8 +1141,8 @@ vbo_exec_DrawElementsBaseVertex(GLenum mode, GLsizei count, GLenum type,
|
|||
|
||||
if (MESA_VERBOSE & VERBOSE_DRAW)
|
||||
_mesa_debug(ctx, "glDrawElementsBaseVertex(%s, %d, %s, %p, %d)\n",
|
||||
_mesa_lookup_enum_by_nr(mode), count,
|
||||
_mesa_lookup_enum_by_nr(type), indices, basevertex);
|
||||
_mesa_enum_to_string(mode), count,
|
||||
_mesa_enum_to_string(type), indices, basevertex);
|
||||
|
||||
if (!_mesa_validate_DrawElements(ctx, mode, count, type, indices))
|
||||
return;
|
||||
|
|
@ -1163,8 +1163,8 @@ vbo_exec_DrawElementsInstanced(GLenum mode, GLsizei count, GLenum type,
|
|||
|
||||
if (MESA_VERBOSE & VERBOSE_DRAW)
|
||||
_mesa_debug(ctx, "glDrawElementsInstanced(%s, %d, %s, %p, %d)\n",
|
||||
_mesa_lookup_enum_by_nr(mode), count,
|
||||
_mesa_lookup_enum_by_nr(type), indices, numInstances);
|
||||
_mesa_enum_to_string(mode), count,
|
||||
_mesa_enum_to_string(type), indices, numInstances);
|
||||
|
||||
if (!_mesa_validate_DrawElementsInstanced(ctx, mode, count, type, indices,
|
||||
numInstances))
|
||||
|
|
@ -1187,8 +1187,8 @@ vbo_exec_DrawElementsInstancedBaseVertex(GLenum mode, GLsizei count, GLenum type
|
|||
|
||||
if (MESA_VERBOSE & VERBOSE_DRAW)
|
||||
_mesa_debug(ctx, "glDrawElementsInstancedBaseVertex(%s, %d, %s, %p, %d; %d)\n",
|
||||
_mesa_lookup_enum_by_nr(mode), count,
|
||||
_mesa_lookup_enum_by_nr(type), indices,
|
||||
_mesa_enum_to_string(mode), count,
|
||||
_mesa_enum_to_string(type), indices,
|
||||
numInstances, basevertex);
|
||||
|
||||
if (!_mesa_validate_DrawElementsInstanced(ctx, mode, count, type, indices,
|
||||
|
|
@ -1212,8 +1212,8 @@ vbo_exec_DrawElementsInstancedBaseInstance(GLenum mode, GLsizei count, GLenum ty
|
|||
|
||||
if (MESA_VERBOSE & VERBOSE_DRAW)
|
||||
_mesa_debug(ctx, "glDrawElementsInstancedBaseInstance(%s, %d, %s, %p, %d, %d)\n",
|
||||
_mesa_lookup_enum_by_nr(mode), count,
|
||||
_mesa_lookup_enum_by_nr(type), indices,
|
||||
_mesa_enum_to_string(mode), count,
|
||||
_mesa_enum_to_string(type), indices,
|
||||
numInstances, baseInstance);
|
||||
|
||||
if (!_mesa_validate_DrawElementsInstanced(ctx, mode, count, type, indices,
|
||||
|
|
@ -1238,8 +1238,8 @@ vbo_exec_DrawElementsInstancedBaseVertexBaseInstance(GLenum mode, GLsizei count,
|
|||
|
||||
if (MESA_VERBOSE & VERBOSE_DRAW)
|
||||
_mesa_debug(ctx, "glDrawElementsInstancedBaseVertexBaseInstance(%s, %d, %s, %p, %d, %d, %d)\n",
|
||||
_mesa_lookup_enum_by_nr(mode), count,
|
||||
_mesa_lookup_enum_by_nr(type), indices,
|
||||
_mesa_enum_to_string(mode), count,
|
||||
_mesa_enum_to_string(type), indices,
|
||||
numInstances, basevertex, baseInstance);
|
||||
|
||||
if (!_mesa_validate_DrawElementsInstanced(ctx, mode, count, type, indices,
|
||||
|
|
@ -1488,7 +1488,7 @@ vbo_exec_DrawTransformFeedback(GLenum mode, GLuint name)
|
|||
|
||||
if (MESA_VERBOSE & VERBOSE_DRAW)
|
||||
_mesa_debug(ctx, "glDrawTransformFeedback(%s, %d)\n",
|
||||
_mesa_lookup_enum_by_nr(mode), name);
|
||||
_mesa_enum_to_string(mode), name);
|
||||
|
||||
vbo_draw_transform_feedback(ctx, mode, obj, 0, 1);
|
||||
}
|
||||
|
|
@ -1502,7 +1502,7 @@ vbo_exec_DrawTransformFeedbackStream(GLenum mode, GLuint name, GLuint stream)
|
|||
|
||||
if (MESA_VERBOSE & VERBOSE_DRAW)
|
||||
_mesa_debug(ctx, "glDrawTransformFeedbackStream(%s, %u, %u)\n",
|
||||
_mesa_lookup_enum_by_nr(mode), name, stream);
|
||||
_mesa_enum_to_string(mode), name, stream);
|
||||
|
||||
vbo_draw_transform_feedback(ctx, mode, obj, stream, 1);
|
||||
}
|
||||
|
|
@ -1517,7 +1517,7 @@ vbo_exec_DrawTransformFeedbackInstanced(GLenum mode, GLuint name,
|
|||
|
||||
if (MESA_VERBOSE & VERBOSE_DRAW)
|
||||
_mesa_debug(ctx, "glDrawTransformFeedbackInstanced(%s, %d)\n",
|
||||
_mesa_lookup_enum_by_nr(mode), name);
|
||||
_mesa_enum_to_string(mode), name);
|
||||
|
||||
vbo_draw_transform_feedback(ctx, mode, obj, 0, primcount);
|
||||
}
|
||||
|
|
@ -1533,7 +1533,7 @@ vbo_exec_DrawTransformFeedbackStreamInstanced(GLenum mode, GLuint name,
|
|||
if (MESA_VERBOSE & VERBOSE_DRAW)
|
||||
_mesa_debug(ctx, "glDrawTransformFeedbackStreamInstanced"
|
||||
"(%s, %u, %u, %i)\n",
|
||||
_mesa_lookup_enum_by_nr(mode), name, stream, primcount);
|
||||
_mesa_enum_to_string(mode), name, stream, primcount);
|
||||
|
||||
vbo_draw_transform_feedback(ctx, mode, obj, stream, primcount);
|
||||
}
|
||||
|
|
@ -1709,7 +1709,7 @@ vbo_exec_DrawArraysIndirect(GLenum mode, const GLvoid *indirect)
|
|||
|
||||
if (MESA_VERBOSE & VERBOSE_DRAW)
|
||||
_mesa_debug(ctx, "glDrawArraysIndirect(%s, %p)\n",
|
||||
_mesa_lookup_enum_by_nr(mode), indirect);
|
||||
_mesa_enum_to_string(mode), indirect);
|
||||
|
||||
if (!_mesa_validate_DrawArraysIndirect(ctx, mode, indirect))
|
||||
return;
|
||||
|
|
@ -1725,8 +1725,8 @@ vbo_exec_DrawElementsIndirect(GLenum mode, GLenum type,
|
|||
|
||||
if (MESA_VERBOSE & VERBOSE_DRAW)
|
||||
_mesa_debug(ctx, "glDrawElementsIndirect(%s, %s, %p)\n",
|
||||
_mesa_lookup_enum_by_nr(mode),
|
||||
_mesa_lookup_enum_by_nr(type), indirect);
|
||||
_mesa_enum_to_string(mode),
|
||||
_mesa_enum_to_string(type), indirect);
|
||||
|
||||
if (!_mesa_validate_DrawElementsIndirect(ctx, mode, type, indirect))
|
||||
return;
|
||||
|
|
@ -1743,7 +1743,7 @@ vbo_exec_MultiDrawArraysIndirect(GLenum mode,
|
|||
|
||||
if (MESA_VERBOSE & VERBOSE_DRAW)
|
||||
_mesa_debug(ctx, "glMultiDrawArraysIndirect(%s, %p, %i, %i)\n",
|
||||
_mesa_lookup_enum_by_nr(mode), indirect, primcount, stride);
|
||||
_mesa_enum_to_string(mode), indirect, primcount, stride);
|
||||
|
||||
/* If <stride> is zero, the array elements are treated as tightly packed. */
|
||||
if (stride == 0)
|
||||
|
|
@ -1768,8 +1768,8 @@ vbo_exec_MultiDrawElementsIndirect(GLenum mode, GLenum type,
|
|||
|
||||
if (MESA_VERBOSE & VERBOSE_DRAW)
|
||||
_mesa_debug(ctx, "glMultiDrawElementsIndirect(%s, %s, %p, %i, %i)\n",
|
||||
_mesa_lookup_enum_by_nr(mode),
|
||||
_mesa_lookup_enum_by_nr(type), indirect, primcount, stride);
|
||||
_mesa_enum_to_string(mode),
|
||||
_mesa_enum_to_string(type), indirect, primcount, stride);
|
||||
|
||||
/* If <stride> is zero, the array elements are treated as tightly packed. */
|
||||
if (stride == 0)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue