Searched refs:drawFb (Results 1 – 7 of 7) sorted by relevance
/third_party/mesa3d/src/mesa/main/ |
D | blit.c | 193 struct gl_framebuffer *drawFb, GLenum filter, in validate_color_buffer() argument 196 const GLuint numColorDrawBuffers = drawFb->_NumColorDrawBuffers; in validate_color_buffer() 202 colorDrawRb = drawFb->_ColorDrawBuffers[i]; in validate_color_buffer() 230 if (readFb->Visual.samples > 0 || drawFb->Visual.samples > 0) { in validate_color_buffer() 268 struct gl_framebuffer *drawFb, const char *func) in validate_stencil_buffer() argument 273 drawFb->Attachment[BUFFER_STENCIL].Renderbuffer; in validate_stencil_buffer() 314 struct gl_framebuffer *drawFb, const char *func) in validate_depth_buffer() argument 319 drawFb->Attachment[BUFFER_DEPTH].Renderbuffer; in validate_depth_buffer() 630 struct gl_framebuffer *readFb, struct gl_framebuffer *drawFb, in blit_framebuffer() argument 637 if (!readFb || !drawFb) { in blit_framebuffer() [all …]
|
D | blend.h | 48 const struct gl_framebuffer *drawFb); 52 const struct gl_framebuffer *drawFb); 60 const struct gl_framebuffer *drawFb); 64 const struct gl_framebuffer *drawFb);
|
D | blend.c | 1105 const struct gl_framebuffer *drawFb) in _mesa_get_clamp_fragment_color() argument 1107 return get_clamp_color(drawFb, ctx->Color.ClampFragmentColor); in _mesa_get_clamp_fragment_color() 1112 const struct gl_framebuffer *drawFb) in _mesa_get_clamp_vertex_color() argument 1114 return get_clamp_color(drawFb, ctx->Light.ClampVertexColor); in _mesa_get_clamp_vertex_color() 1129 const struct gl_framebuffer *drawFb) in _mesa_update_clamp_fragment_color() argument 1138 if (!drawFb || !drawFb->_HasSNormOrFloatColorBuffer || in _mesa_update_clamp_fragment_color() 1139 drawFb->_IntegerBuffers) in _mesa_update_clamp_fragment_color() 1142 clamp = _mesa_get_clamp_fragment_color(ctx, drawFb); in _mesa_update_clamp_fragment_color() 1157 const struct gl_framebuffer *drawFb) in _mesa_update_clamp_vertex_color() argument 1160 _mesa_get_clamp_vertex_color(ctx, drawFb); in _mesa_update_clamp_vertex_color()
|
D | framebuffer.h | 133 struct gl_framebuffer *drawFb); 142 struct gl_framebuffer *drawFb);
|
D | framebuffer.c | 667 struct gl_framebuffer *drawFb) in _mesa_update_framebuffer() argument 671 update_framebuffer(ctx, drawFb); in _mesa_update_framebuffer() 672 if (readFb != drawFb) in _mesa_update_framebuffer() 675 _mesa_update_clamp_vertex_color(ctx, drawFb); in _mesa_update_framebuffer() 676 _mesa_update_clamp_fragment_color(ctx, drawFb); in _mesa_update_framebuffer()
|
D | image.c | 759 const struct gl_framebuffer *drawFb, in _mesa_clip_blit() argument 769 const GLint dstXmin = drawFb->_Xmin; in _mesa_clip_blit() 770 const GLint dstXmax = drawFb->_Xmax; in _mesa_clip_blit() 771 const GLint dstYmin = drawFb->_Ymin; in _mesa_clip_blit() 772 const GLint dstYmax = drawFb->_Ymax; in _mesa_clip_blit()
|
D | image.h | 127 const struct gl_framebuffer *drawFb,
|