Searched defs:vfmt (Results 1 - 25 of 25) sorted by relevance

/external/chromium_org/third_party/mesa/src/src/mesa/vbo/
H A Dvbo_noop.h36 _mesa_noop_vtxfmt_init(GLvertexformat *vfmt);
44 _mesa_noop_vtxfmt_init(GLvertexformat *vfmt) argument
H A Dvbo_noop.c430 _mesa_noop_vtxfmt_init(GLvertexformat * vfmt) argument
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
[all...]
H A Dvbo_exec_api.c915 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
[all...]
H A Dvbo_save_api.c1321 GLvertexformat *vfmt = &save->vtxfmt; local
1323 _MESA_INIT_ARRAYELT_VTXFMT(vfmt, _ae_);
1325 vfmt->Begin = _save_Begin;
1326 vfmt->Color3f = _save_Color3f;
1327 vfmt->Color3fv = _save_Color3fv;
1328 vfmt->Color4f = _save_Color4f;
1329 vfmt->Color4fv = _save_Color4fv;
1330 vfmt->EdgeFlag = _save_EdgeFlag;
1331 vfmt->End = _save_End;
1332 vfmt
[all...]
/external/mesa3d/src/mesa/vbo/
H A Dvbo_noop.h36 _mesa_noop_vtxfmt_init(GLvertexformat *vfmt);
44 _mesa_noop_vtxfmt_init(GLvertexformat *vfmt) argument
H A Dvbo_noop.c430 _mesa_noop_vtxfmt_init(GLvertexformat * vfmt) argument
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
[all...]
H A Dvbo_exec_api.c915 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
[all...]
H A Dvbo_save_api.c1321 GLvertexformat *vfmt = &save->vtxfmt; local
1323 _MESA_INIT_ARRAYELT_VTXFMT(vfmt, _ae_);
1325 vfmt->Begin = _save_Begin;
1326 vfmt->Color3f = _save_Color3f;
1327 vfmt->Color3fv = _save_Color3fv;
1328 vfmt->Color4f = _save_Color4f;
1329 vfmt->Color4fv = _save_Color4fv;
1330 vfmt->EdgeFlag = _save_EdgeFlag;
1331 vfmt->End = _save_End;
1332 vfmt
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Deval.h46 #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);
91 _mesa_install_eval_vtxfmt(struct _glapi_table *disp, const GLvertexformat *vfmt) argument
[all...]
H A Dvtxfmt.c44 * 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
48 install_vtxfmt(struct gl_context *ctx, struct _glapi_table *tab, const GLvertexformat *vfmt) argument
242 _mesa_install_exec_vtxfmt(struct gl_context *ctx, const GLvertexformat *vfmt) argument
253 _mesa_install_save_vtxfmt(struct gl_context *ctx, const GLvertexformat *vfmt) argument
[all...]
H A Dapi_arrayelt.h36 #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)
76 _mesa_install_arrayelt_vtxfmt(struct _glapi_table *disp, const GLvertexformat *vfmt) argument
H A Ddlist.h42 #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)
87 _mesa_install_dlist_vtxfmt(struct _glapi_table *disp, const GLvertexformat *vfmt) argument
H A Deval.c891 const GLvertexformat *vfmt)
893 SET_EvalCoord1f(disp, vfmt->EvalCoord1f);
894 SET_EvalCoord1fv(disp, vfmt->EvalCoord1fv);
895 SET_EvalCoord2f(disp, vfmt->EvalCoord2f);
896 SET_EvalCoord2fv(disp, vfmt->EvalCoord2fv);
897 SET_EvalPoint1(disp, vfmt->EvalPoint1);
898 SET_EvalPoint2(disp, vfmt->EvalPoint2);
900 SET_EvalMesh1(disp, vfmt->EvalMesh1);
901 SET_EvalMesh2(disp, vfmt->EvalMesh2);
890 _mesa_install_eval_vtxfmt(struct _glapi_table *disp, const GLvertexformat *vfmt) argument
H A Dapi_arrayelt.c1710 const GLvertexformat *vfmt)
1712 SET_ArrayElement(disp, vfmt->ArrayElement);
1709 _mesa_install_arrayelt_vtxfmt(struct _glapi_table *disp, const GLvertexformat *vfmt) argument
H A Ddlist.c10959 _mesa_save_vtxfmt_init(GLvertexformat * vfmt) argument
10961 _MESA_INIT_ARRAYELT_VTXFMT(vfmt, _ae_);
10963 vfmt->Begin = save_Begin;
10965 _MESA_INIT_DLIST_VTXFMT(vfmt, save_);
10967 vfmt->Color3f = save_Color3f;
10968 vfmt->Color3fv = save_Color3fv;
10969 vfmt->Color4f = save_Color4f;
10970 vfmt->Color4fv = save_Color4fv;
10971 vfmt->EdgeFlag = save_EdgeFlag;
10972 vfmt
11057 _mesa_install_dlist_vtxfmt(struct _glapi_table *disp, const GLvertexformat *vfmt) argument
[all...]
/external/mesa3d/src/mesa/main/
H A Deval.h46 #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);
91 _mesa_install_eval_vtxfmt(struct _glapi_table *disp, const GLvertexformat *vfmt) argument
[all...]
H A Dvtxfmt.c44 * 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
48 install_vtxfmt(struct gl_context *ctx, struct _glapi_table *tab, const GLvertexformat *vfmt) argument
242 _mesa_install_exec_vtxfmt(struct gl_context *ctx, const GLvertexformat *vfmt) argument
253 _mesa_install_save_vtxfmt(struct gl_context *ctx, const GLvertexformat *vfmt) argument
[all...]
H A Dapi_arrayelt.h36 #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)
76 _mesa_install_arrayelt_vtxfmt(struct _glapi_table *disp, const GLvertexformat *vfmt) argument
H A Ddlist.h42 #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)
87 _mesa_install_dlist_vtxfmt(struct _glapi_table *disp, const GLvertexformat *vfmt) argument
H A Deval.c891 const GLvertexformat *vfmt)
893 SET_EvalCoord1f(disp, vfmt->EvalCoord1f);
894 SET_EvalCoord1fv(disp, vfmt->EvalCoord1fv);
895 SET_EvalCoord2f(disp, vfmt->EvalCoord2f);
896 SET_EvalCoord2fv(disp, vfmt->EvalCoord2fv);
897 SET_EvalPoint1(disp, vfmt->EvalPoint1);
898 SET_EvalPoint2(disp, vfmt->EvalPoint2);
900 SET_EvalMesh1(disp, vfmt->EvalMesh1);
901 SET_EvalMesh2(disp, vfmt->EvalMesh2);
890 _mesa_install_eval_vtxfmt(struct _glapi_table *disp, const GLvertexformat *vfmt) argument
H A Dapi_arrayelt.c1710 const GLvertexformat *vfmt)
1712 SET_ArrayElement(disp, vfmt->ArrayElement);
1709 _mesa_install_arrayelt_vtxfmt(struct _glapi_table *disp, const GLvertexformat *vfmt) argument
H A Ddlist.c10959 _mesa_save_vtxfmt_init(GLvertexformat * vfmt) argument
10961 _MESA_INIT_ARRAYELT_VTXFMT(vfmt, _ae_);
10963 vfmt->Begin = save_Begin;
10965 _MESA_INIT_DLIST_VTXFMT(vfmt, save_);
10967 vfmt->Color3f = save_Color3f;
10968 vfmt->Color3fv = save_Color3fv;
10969 vfmt->Color4f = save_Color4f;
10970 vfmt->Color4fv = save_Color4fv;
10971 vfmt->EdgeFlag = save_EdgeFlag;
10972 vfmt
11057 _mesa_install_dlist_vtxfmt(struct _glapi_table *disp, const GLvertexformat *vfmt) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
H A Dradeon_maos_arrays.c149 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 |
[all...]
/external/mesa3d/src/mesa/drivers/dri/radeon/
H A Dradeon_maos_arrays.c149 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 |
[all...]
/external/qemu/distrib/sdl-1.2.15/include/
H A DSDL_video.h185 SDL_PixelFormat *vfmt; /**< Value: The format of the video surface */ member in struct:SDL_VideoInfo
296 * video hardware. If this is called before SDL_SetVideoMode(), the 'vfmt'
322 * by SDL_GetVideoInfo()->vfmt

Completed in 492 milliseconds