Lines Matching refs:target

52 	virtual void		bindTexture				(deUint32 target, deUint32 texture)							= DE_NULL;
56 virtual void bindFramebuffer (deUint32 target, deUint32 framebuffer) = DE_NULL;
60 virtual void bindRenderbuffer (deUint32 target, deUint32 renderbuffer) = DE_NULL;
65 virtual void texImage1D (deUint32 target, int level, deUint32 internalFormat, int width, int border, deUint32 format, deUint32 type, const void* data) = DE_NULL;
66 virtual void texImage2D (deUint32 target, int level, deUint32 internalFormat, int width, int height, int border, deUint32 format, deUint32 type, const void* data) = DE_NULL;
67 virtual void texImage3D (deUint32 target, int level, deUint32 internalFormat, int width, int height, int depth, int border, deUint32 format, deUint32 type, const void* data) = DE_NULL;
68 virtual void texSubImage1D (deUint32 target, int level, int xoffset, int width, deUint32 format, deUint32 type, const void* data) = DE_NULL;
69 virtual void texSubImage2D (deUint32 target, int level, int xoffset, int yoffset, int width, int height, deUint32 format, deUint32 type, const void* data) = DE_NULL;
70 virtual void texSubImage3D (deUint32 target, int level, int xoffset, int yoffset, int zoffset, int width, int height, int depth, deUint32 format, deUint32 type, const void* data) = DE_NULL;
71 virtual void copyTexImage1D (deUint32 target, int level, deUint32 internalFormat, int x, int y, int width, int border) = DE_NULL;
72 virtual void copyTexImage2D (deUint32 target, int level, deUint32 internalFormat, int x, int y, int width, int height, int border) = DE_NULL;
73 virtual void copyTexSubImage1D (deUint32 target, int level, int xoffset, int x, int y, int width) = DE_NULL;
74 virtual void copyTexSubImage2D (deUint32 target, int level, int xoffset, int yoffset, int x, int y, int width, int height) = DE_NULL;
75 virtual void copyTexSubImage3D (deUint32 target, int level, int xoffset, int yoffset, int zoffset, int x, int y, int width, int height) = DE_NULL;
77 virtual void texStorage2D (deUint32 target, int levels, deUint32 internalFormat, int width, int height) = DE_NULL;
78 virtual void texStorage3D (deUint32 target, int levels, deUint32 internalFormat, int width, int height, int depth) = DE_NULL;
80 virtual void texParameteri (deUint32 target, deUint32 pname, int value) = DE_NULL;
82 virtual void framebufferTexture2D (deUint32 target, deUint32 attachment, deUint32 textarget, deUint32 texture, int level) = DE_NULL;
83 virtual void framebufferTextureLayer (deUint32 target, deUint32 attachment, deUint32 texture, int level, int layer) = DE_NULL;
84 virtual void framebufferRenderbuffer (deUint32 target, deUint32 attachment, deUint32 renderbuffertarget, deUint32 renderbuffer) = DE_NULL;
85 virtual deUint32 checkFramebufferStatus (deUint32 target) = DE_NULL;
87 virtual void getFramebufferAttachmentParameteriv (deUint32 target, deUint32 attachment, deUint32 pname, int* params) = DE_NULL;
89 virtual void renderbufferStorage (deUint32 target, deUint32 internalformat, int width, int height) = DE_NULL;
90 virtual void renderbufferStorageMultisample (deUint32 target, int samples, deUint32 internalFormat, int width, int height) = DE_NULL;
92 virtual void bindBuffer (deUint32 target, deUint32 buffer) = DE_NULL;
96 virtual void bufferData (deUint32 target, deIntptr size, const void* data, deUint32 usage) = DE_NULL;
97 virtual void bufferSubData (deUint32 target, deIntptr offset, deIntptr size, const void* data) = DE_NULL;
139 virtual void invalidateSubFramebuffer(deUint32 target, int numAttachments, const deUint32* attachments, int x, int y, int width, int height) = DE_NULL;
140 virtual void invalidateFramebuffer (deUint32 target, int numAttachments, const deUint32* attachments) = DE_NULL;
205 virtual void texImage2D (deUint32 target, int level, deUint32 internalFormat, const tcu::Surface& src);
206 virtual void texImage2D (deUint32 target, int level, deUint32 internalFormat, int width, int height);
207 virtual void texSubImage2D (deUint32 target, int level, int xoffset, int yoffset, const tcu::Surface& src);