예제 #1
0
파일: s_zoom.c 프로젝트: GYGit/reactos
void
_swrast_write_zoomed_depth_span(struct gl_context *ctx, GLint imgX, GLint imgY,
                                const SWspan *span)
{
   zoom_span(ctx, imgX, imgY, span,
             (const GLvoid *) span->array->z, GL_DEPTH_COMPONENT);
}
예제 #2
0
파일: s_zoom.c 프로젝트: Ionic/nx-libs
void
_swrast_write_zoomed_index_span( GLcontext *ctx, const struct sw_span *span,
                               GLint y0, GLint skipPixels )
{
   zoom_span(ctx, span, (const GLvoid *) span->array->index, y0,
             GL_COLOR_INDEX, skipPixels);
}
예제 #3
0
파일: s_zoom.c 프로젝트: Ionic/nx-libs
void
_swrast_write_zoomed_depth_span( GLcontext *ctx, const struct sw_span *span,
                                 GLint y0, GLint skipPixels )
{
   zoom_span(ctx, span, (const GLvoid *) span->array->z, y0,
             GL_DEPTH_COMPONENT, skipPixels);
}
예제 #4
0
파일: s_zoom.c 프로젝트: Ionic/nx-libs
void
_swrast_write_zoomed_rgb_span( GLcontext *ctx, const struct sw_span *span,
                             CONST GLchan rgb[][3], GLint y0,
                             GLint skipPixels )
{
   zoom_span(ctx, span, (const GLvoid *) rgb, y0, GL_RGB, skipPixels);
}
예제 #5
0
파일: s_zoom.c 프로젝트: GYGit/reactos
void
_swrast_write_zoomed_rgb_span(struct gl_context *ctx, GLint imgX, GLint imgY,
                              const SWspan *span, const GLvoid *rgb)
{
   zoom_span(ctx, imgX, imgY, span, rgb, GL_RGB);
}