Home | History | Annotate | Download | only in r200

Lines Matching refs:Const

72 static const GLubyte *r200GetString( struct gl_context *ctx, GLenum name )
99 extern const struct tnl_pipeline_stage _r200_render_stage;
100 extern const struct tnl_pipeline_stage _r200_tcl_stage;
102 static const struct tnl_pipeline_stage *r200_pipeline[] = {
199 const struct gl_config *glVisual,
306 ctx->Const.MaxTextureUnits = driQueryOptioni (&rmesa->radeon.optionCache,
308 ctx->Const.MaxTextureImageUnits = ctx->Const.MaxTextureUnits;
309 ctx->Const.MaxTextureCoordUnits = ctx->Const.MaxTextureUnits;
311 ctx->Const.MaxCombinedTextureImageUnits = ctx->Const.MaxTextureUnits;
313 ctx->Const.StripTextureBorder = GL_TRUE;
319 ctx->Const.MaxTextureLevels = 12;
320 ctx->Const.Max3DTextureLevels = 9;
321 ctx->Const.MaxCubeTextureLevels = 12;
322 ctx->Const.MaxTextureRectSize = 2048;
323 ctx->Const.MaxRenderbufferSize = 2048;
325 ctx->Const.MaxTextureMaxAnisotropy = 16.0;
329 ctx->Const.MinPointSize = 1.0;
330 ctx->Const.MinPointSizeAA = 1.0;
331 ctx->Const.MaxPointSizeAA = 1.0;
332 ctx->Const.PointSizeGranularity = 0.0625;
333 ctx->Const.MaxPointSize = 2047.0;
336 ctx->Point.MaxSize = ctx->Const.MaxPointSize;
338 ctx->Const.MinLineWidth = 1.0;
339 ctx->Const.MinLineWidthAA = 1.0;
340 ctx->Const.MaxLineWidth = 10.0;
341 ctx->Const.MaxLineWidthAA = 10.0;
342 ctx->Const.LineWidthGranularity = 0.0625;
344 ctx->Const.VertexProgram.MaxNativeInstructions = R200_VSF_MAX_INST;
345 ctx->Const.VertexProgram.MaxNativeAttribs = 12;
346 ctx->Const.VertexProgram.MaxNativeTemps = R200_VSF_MAX_TEMPS;
347 ctx->Const.VertexProgram.MaxNativeParameters = R200_VSF_MAX_PARAM;
348 ctx->Const.VertexProgram.MaxNativeAddressRegs = 1;
350 ctx->Const.MaxDrawBuffers = 1;
351 ctx->Const.MaxColorAttachments = 1;
430 ctx->Extensions.ATI_fragment_shader = (ctx->Const.MaxTextureUnits == 6);