HomeSort by relevance Sort by last modified time
    Searched refs:vfmt (Results 1 - 25 of 38) sorted by null

1 2

  /external/chromium_org/third_party/mesa/src/src/mesa/main/
vtxfmt.c 44 * Use the per-vertex functions found in <vfmt> to initialize the given
49 const GLvertexformat *vfmt)
52 _mesa_install_arrayelt_vtxfmt(tab, vfmt);
53 SET_Color3f(tab, vfmt->Color3f);
54 SET_Color3fv(tab, vfmt->Color3fv);
55 SET_Color4f(tab, vfmt->Color4f);
56 SET_Color4fv(tab, vfmt->Color4fv);
57 SET_EdgeFlag(tab, vfmt->EdgeFlag);
61 _mesa_install_eval_vtxfmt(tab, vfmt);
65 SET_FogCoordfEXT(tab, vfmt->FogCoordfEXT)
    [all...]
vtxfmt.h 42 extern void _mesa_install_exec_vtxfmt( struct gl_context *ctx, const GLvertexformat *vfmt );
43 extern void _mesa_install_save_vtxfmt( struct gl_context *ctx, const GLvertexformat *vfmt );
48 _mesa_install_exec_vtxfmt( struct gl_context *ctx, const GLvertexformat *vfmt )
53 _mesa_install_save_vtxfmt( struct gl_context *ctx, const GLvertexformat *vfmt )
eval.h 46 #define _MESA_INIT_EVAL_VTXFMT(vfmt, impl) \
48 (vfmt)->EvalCoord1f = impl ## EvalCoord1f; \
49 (vfmt)->EvalCoord1fv = impl ## EvalCoord1fv; \
50 (vfmt)->EvalCoord2f = impl ## EvalCoord2f; \
51 (vfmt)->EvalCoord2fv = impl ## EvalCoord2fv; \
52 (vfmt)->EvalPoint1 = impl ## EvalPoint1; \
53 (vfmt)->EvalPoint2 = impl ## EvalPoint2; \
54 (vfmt)->EvalMesh1 = impl ## EvalMesh1; \
55 (vfmt)->EvalMesh2 = impl ## EvalMesh2; \
81 const GLvertexformat *vfmt);
    [all...]
api_arrayelt.h 36 #define _MESA_INIT_ARRAYELT_VTXFMT(vfmt, impl) \
38 (vfmt)->ArrayElement = impl ## ArrayElement; \
53 const GLvertexformat *vfmt);
57 #define _MESA_INIT_ARRAYELT_VTXFMT(vfmt, impl) do { } while (0)
77 const GLvertexformat *vfmt)
dlist.h 42 #define _MESA_INIT_DLIST_VTXFMT(vfmt, impl) \
44 (vfmt)->CallList = impl ## CallList; \
45 (vfmt)->CallLists = impl ## CallLists; \
64 extern void _mesa_save_vtxfmt_init( GLvertexformat *vfmt );
69 const GLvertexformat *vfmt);
77 #define _MESA_INIT_DLIST_VTXFMT(vfmt, impl) do { } while (0)
88 const GLvertexformat *vfmt)
  /external/mesa3d/src/mesa/main/
vtxfmt.c 44 * Use the per-vertex functions found in <vfmt> to initialize the given
49 const GLvertexformat *vfmt)
52 _mesa_install_arrayelt_vtxfmt(tab, vfmt);
53 SET_Color3f(tab, vfmt->Color3f);
54 SET_Color3fv(tab, vfmt->Color3fv);
55 SET_Color4f(tab, vfmt->Color4f);
56 SET_Color4fv(tab, vfmt->Color4fv);
57 SET_EdgeFlag(tab, vfmt->EdgeFlag);
61 _mesa_install_eval_vtxfmt(tab, vfmt);
65 SET_FogCoordfEXT(tab, vfmt->FogCoordfEXT)
    [all...]
vtxfmt.h 42 extern void _mesa_install_exec_vtxfmt( struct gl_context *ctx, const GLvertexformat *vfmt );
43 extern void _mesa_install_save_vtxfmt( struct gl_context *ctx, const GLvertexformat *vfmt );
48 _mesa_install_exec_vtxfmt( struct gl_context *ctx, const GLvertexformat *vfmt )
53 _mesa_install_save_vtxfmt( struct gl_context *ctx, const GLvertexformat *vfmt )
eval.h 46 #define _MESA_INIT_EVAL_VTXFMT(vfmt, impl) \
48 (vfmt)->EvalCoord1f = impl ## EvalCoord1f; \
49 (vfmt)->EvalCoord1fv = impl ## EvalCoord1fv; \
50 (vfmt)->EvalCoord2f = impl ## EvalCoord2f; \
51 (vfmt)->EvalCoord2fv = impl ## EvalCoord2fv; \
52 (vfmt)->EvalPoint1 = impl ## EvalPoint1; \
53 (vfmt)->EvalPoint2 = impl ## EvalPoint2; \
54 (vfmt)->EvalMesh1 = impl ## EvalMesh1; \
55 (vfmt)->EvalMesh2 = impl ## EvalMesh2; \
81 const GLvertexformat *vfmt);
    [all...]
api_arrayelt.h 36 #define _MESA_INIT_ARRAYELT_VTXFMT(vfmt, impl) \
38 (vfmt)->ArrayElement = impl ## ArrayElement; \
53 const GLvertexformat *vfmt);
57 #define _MESA_INIT_ARRAYELT_VTXFMT(vfmt, impl) do { } while (0)
77 const GLvertexformat *vfmt)
dlist.h 42 #define _MESA_INIT_DLIST_VTXFMT(vfmt, impl) \
44 (vfmt)->CallList = impl ## CallList; \
45 (vfmt)->CallLists = impl ## CallLists; \
64 extern void _mesa_save_vtxfmt_init( GLvertexformat *vfmt );
69 const GLvertexformat *vfmt);
77 #define _MESA_INIT_DLIST_VTXFMT(vfmt, impl) do { } while (0)
88 const GLvertexformat *vfmt)
  /external/chromium_org/third_party/mesa/src/src/mesa/vbo/
vbo_noop.h 36 _mesa_noop_vtxfmt_init(GLvertexformat *vfmt);
44 _mesa_noop_vtxfmt_init(GLvertexformat *vfmt)
vbo_noop.c 430 _mesa_noop_vtxfmt_init(GLvertexformat * vfmt)
432 _MESA_INIT_ARRAYELT_VTXFMT(vfmt, _ae_);
434 vfmt->Begin = _mesa_noop_Begin;
436 _MESA_INIT_DLIST_VTXFMT(vfmt, _mesa_);
438 vfmt->Color3f = _mesa_noop_Color3f;
439 vfmt->Color3fv = _mesa_noop_Color3fv;
440 vfmt->Color4f = _mesa_noop_Color4f;
441 vfmt->Color4fv = _mesa_noop_Color4fv;
442 vfmt->EdgeFlag = _mesa_noop_EdgeFlag;
443 vfmt->End = _mesa_noop_End
    [all...]
vbo_save_api.c 1321 GLvertexformat *vfmt = &save->vtxfmt; local
    [all...]
vbo_exec_api.c 915 GLvertexformat *vfmt = &exec->vtxfmt; local
917 _MESA_INIT_ARRAYELT_VTXFMT(vfmt, _ae_);
919 vfmt->Begin = vbo_exec_Begin;
920 vfmt->End = vbo_exec_End;
921 vfmt->PrimitiveRestartNV = vbo_exec_PrimitiveRestartNV;
923 _MESA_INIT_DLIST_VTXFMT(vfmt, _mesa_);
924 _MESA_INIT_EVAL_VTXFMT(vfmt, vbo_exec_);
926 vfmt->Rectf = vbo_exec_Rectf;
930 vfmt->Color3f = vbo_Color3f;
931 vfmt->Color3fv = vbo_Color3fv
    [all...]
  /external/mesa3d/src/mesa/vbo/
vbo_noop.h 36 _mesa_noop_vtxfmt_init(GLvertexformat *vfmt);
44 _mesa_noop_vtxfmt_init(GLvertexformat *vfmt)
vbo_noop.c 430 _mesa_noop_vtxfmt_init(GLvertexformat * vfmt)
432 _MESA_INIT_ARRAYELT_VTXFMT(vfmt, _ae_);
434 vfmt->Begin = _mesa_noop_Begin;
436 _MESA_INIT_DLIST_VTXFMT(vfmt, _mesa_);
438 vfmt->Color3f = _mesa_noop_Color3f;
439 vfmt->Color3fv = _mesa_noop_Color3fv;
440 vfmt->Color4f = _mesa_noop_Color4f;
441 vfmt->Color4fv = _mesa_noop_Color4fv;
442 vfmt->EdgeFlag = _mesa_noop_EdgeFlag;
443 vfmt->End = _mesa_noop_End
    [all...]
vbo_save_api.c 1321 GLvertexformat *vfmt = &save->vtxfmt; local
    [all...]
vbo_exec_api.c 915 GLvertexformat *vfmt = &exec->vtxfmt; local
917 _MESA_INIT_ARRAYELT_VTXFMT(vfmt, _ae_);
919 vfmt->Begin = vbo_exec_Begin;
920 vfmt->End = vbo_exec_End;
921 vfmt->PrimitiveRestartNV = vbo_exec_PrimitiveRestartNV;
923 _MESA_INIT_DLIST_VTXFMT(vfmt, _mesa_);
924 _MESA_INIT_EVAL_VTXFMT(vfmt, vbo_exec_);
926 vfmt->Rectf = vbo_exec_Rectf;
930 vfmt->Color3f = vbo_Color3f;
931 vfmt->Color3fv = vbo_Color3fv
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
radeon_maos_arrays.c 149 GLuint vfmt = 0; local
168 case 4: vfmt |= RADEON_CP_VC_FRMT_W0;
169 case 3: vfmt |= RADEON_CP_VC_FRMT_Z;
170 case 2: vfmt |= RADEON_CP_VC_FRMT_XY;
187 vfmt |= RADEON_CP_VC_FRMT_N0;
196 vfmt |= RADEON_CP_VC_FRMT_FPCOLOR | RADEON_CP_VC_FRMT_FPALPHA;
201 vfmt |= RADEON_CP_VC_FRMT_FPCOLOR;
228 vfmt |= RADEON_CP_VC_FRMT_FPSPEC;
243 vfmt |= RADEON_CP_VC_FRMT_FPFOG;
262 vfmt |= RADEON_ST_BIT(unit)
    [all...]
radeon_sanity.c 662 static int print_vertex_format( int vfmt )
667 vfmt,
669 (vfmt & RADEON_CP_VC_FRMT_Z) ? "z," : "",
670 (vfmt & RADEON_CP_VC_FRMT_W0) ? "w0," : "",
671 (vfmt & RADEON_CP_VC_FRMT_FPCOLOR) ? "fpcolor," : "",
672 (vfmt & RADEON_CP_VC_FRMT_FPALPHA) ? "fpalpha," : "",
673 (vfmt & RADEON_CP_VC_FRMT_PKCOLOR) ? "pkcolor," : "",
674 (vfmt & RADEON_CP_VC_FRMT_FPSPEC) ? "fpspec," : "",
675 (vfmt & RADEON_CP_VC_FRMT_FPFOG) ? "fpfog," : "",
676 (vfmt & RADEON_CP_VC_FRMT_PKSPEC) ? "pkspec," : ""
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_maos_arrays.c 149 GLuint vfmt = 0; local
168 case 4: vfmt |= RADEON_CP_VC_FRMT_W0;
169 case 3: vfmt |= RADEON_CP_VC_FRMT_Z;
170 case 2: vfmt |= RADEON_CP_VC_FRMT_XY;
187 vfmt |= RADEON_CP_VC_FRMT_N0;
196 vfmt |= RADEON_CP_VC_FRMT_FPCOLOR | RADEON_CP_VC_FRMT_FPALPHA;
201 vfmt |= RADEON_CP_VC_FRMT_FPCOLOR;
228 vfmt |= RADEON_CP_VC_FRMT_FPSPEC;
243 vfmt |= RADEON_CP_VC_FRMT_FPFOG;
262 vfmt |= RADEON_ST_BIT(unit)
    [all...]
radeon_sanity.c 662 static int print_vertex_format( int vfmt )
667 vfmt,
669 (vfmt & RADEON_CP_VC_FRMT_Z) ? "z," : "",
670 (vfmt & RADEON_CP_VC_FRMT_W0) ? "w0," : "",
671 (vfmt & RADEON_CP_VC_FRMT_FPCOLOR) ? "fpcolor," : "",
672 (vfmt & RADEON_CP_VC_FRMT_FPALPHA) ? "fpalpha," : "",
673 (vfmt & RADEON_CP_VC_FRMT_PKCOLOR) ? "pkcolor," : "",
674 (vfmt & RADEON_CP_VC_FRMT_FPSPEC) ? "fpspec," : "",
675 (vfmt & RADEON_CP_VC_FRMT_FPFOG) ? "fpfog," : "",
676 (vfmt & RADEON_CP_VC_FRMT_PKSPEC) ? "pkspec," : ""
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/
r200_sanity.c     [all...]
  /external/mesa3d/src/mesa/drivers/dri/r200/
r200_sanity.c     [all...]
  /external/qemu/distrib/sdl-1.2.15/test/
testvidinfo.c 404 info->current_w, info->current_h, info->vfmt->BitsPerPixel);
405 if ( info->vfmt->palette == NULL ) {
406 printf(" Red Mask = 0x%.8x\n", info->vfmt->Rmask);
407 printf(" Green Mask = 0x%.8x\n", info->vfmt->Gmask);
408 printf(" Blue Mask = 0x%.8x\n", info->vfmt->Bmask);
420 printf("\t%dx%dx%d\n", modes[i]->w, modes[i]->h, info->vfmt->BitsPerPixel);

Completed in 350 milliseconds

1 2