mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-01 04:40:22 +01:00
i965: use _mesa_is_bufferobj()
This commit is contained in:
parent
abdf2e14bc
commit
ced699b37a
1 changed files with 4 additions and 3 deletions
|
|
@ -6,6 +6,7 @@
|
|||
#include "main/macros.h"
|
||||
#include "main/mtypes.h"
|
||||
#include "main/enums.h"
|
||||
#include "main/bufferobj.h"
|
||||
#include "main/colortab.h"
|
||||
#include "main/convolve.h"
|
||||
#include "main/context.h"
|
||||
|
|
@ -206,7 +207,7 @@ try_pbo_upload(struct intel_context *intel,
|
|||
GLuint src_offset, src_stride;
|
||||
GLuint dst_offset, dst_stride;
|
||||
|
||||
if (unpack->BufferObj->Name == 0 ||
|
||||
if (!_mesa_is_bufferobj(unpack->BufferObj) ||
|
||||
intel->ctx._ImageTransferState ||
|
||||
unpack->SkipPixels || unpack->SkipRows) {
|
||||
DBG("%s: failure 1\n", __FUNCTION__);
|
||||
|
|
@ -264,7 +265,7 @@ try_pbo_zcopy(struct intel_context *intel,
|
|||
GLuint src_offset, src_stride;
|
||||
GLuint dst_offset, dst_stride;
|
||||
|
||||
if (unpack->BufferObj->Name == 0 ||
|
||||
if (!_mesa_is_bufferobj(unpack->BufferObj) ||
|
||||
intel->ctx._ImageTransferState ||
|
||||
unpack->SkipPixels || unpack->SkipRows) {
|
||||
DBG("%s: failure 1\n", __FUNCTION__);
|
||||
|
|
@ -427,7 +428,7 @@ intelTexImage(GLcontext * ctx,
|
|||
*/
|
||||
if (dims <= 2 &&
|
||||
intelImage->mt &&
|
||||
unpack->BufferObj->Name != 0 &&
|
||||
_mesa_is_bufferobj(unpack->BufferObj) &&
|
||||
check_pbo_format(internalFormat, format,
|
||||
type, intelImage->base.TexFormat)) {
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue