Lines Matching refs:GL_TEXTURE_3D
121 ctx.glBindTexture(GL_TEXTURE_3D, texture[0]); in bindtexture()
130 ctx.glBindTexture(GL_TEXTURE_3D, texture[1]); in bindtexture()
135 ctx.glBindTexture(GL_TEXTURE_3D, texture[2]); in bindtexture()
150 ctx.glBindTexture(GL_TEXTURE_3D, texture[3]); in bindtexture()
169 ctx.glBindTexture(GL_TEXTURE_3D, texture[4]); in bindtexture()
2662 ctx.glTexImage3D(GL_TEXTURE_3D, 0, GL_RGBA, 1, 1, 1, 0, GL_RGBA, 0, 0); in teximage3d()
2667 ctx.glTexImage3D(GL_TEXTURE_3D, 0, GL_RGBA, 1, 1, 1, 0, 0, GL_UNSIGNED_BYTE, 0); in teximage3d()
2672 ctx.glTexImage3D(GL_TEXTURE_3D, 0, 0, 1, 1, 1, 0, GL_RGBA, GL_UNSIGNED_BYTE, 0); in teximage3d()
2677 …ctx.glTexImage3D(GL_TEXTURE_3D, 0, GL_DEPTH_STENCIL, 1, 1, 1, 0, GL_DEPTH_STENCIL, GL_UNSIGNED_INT… in teximage3d()
2679 …ctx.glTexImage3D(GL_TEXTURE_3D, 0, GL_DEPTH_COMPONENT, 1, 1, 1, 0, GL_DEPTH_COMPONENT, GL_UNSIGNED… in teximage3d()
2684 ctx.glTexImage3D(GL_TEXTURE_3D, 0, GL_RGB, 1, 1, 1, 0, GL_RGBA, GL_UNSIGNED_BYTE, 0); in teximage3d()
2686 ctx.glTexImage3D(GL_TEXTURE_3D, 0, GL_RGBA, 1, 1, 1, 0, GL_RGB, GL_UNSIGNED_SHORT_4_4_4_4, 0); in teximage3d()
2688 ctx.glTexImage3D(GL_TEXTURE_3D, 0, GL_RGB5_A1, 1, 1, 1, 0, GL_RGB, GL_UNSIGNED_SHORT_5_5_5_1, 0); in teximage3d()
2690 …ctx.glTexImage3D(GL_TEXTURE_3D, 0, GL_RGB10_A2, 1, 1, 1, 0, GL_RGB, GL_UNSIGNED_INT_2_10_10_10_REV… in teximage3d()
2692 ctx.glTexImage3D(GL_TEXTURE_3D, 0, GL_RGBA32UI, 1, 1, 1, 0, GL_RGBA_INTEGER, GL_INT, 0); in teximage3d()
2713 ctx.glTexImage3D(GL_TEXTURE_3D, -1, GL_RGB, 1, 1, 1, 0, GL_RGB, GL_UNSIGNED_BYTE, 0); in teximage3d_neg_level()
2732 …ctx.glTexImage3D(GL_TEXTURE_3D, log2Max3DTextureSize, GL_RGB, 1, 1, 1, 0, GL_RGB, GL_UNSIGNED_BYTE… in teximage3d_max_level()
2746 ctx.glTexImage3D(GL_TEXTURE_3D, 0, GL_RGBA, -1, 1, 1, 0, GL_RGBA, GL_UNSIGNED_BYTE, 0); in teximage3d_neg_width_height_depth()
2748 ctx.glTexImage3D(GL_TEXTURE_3D, 0, GL_RGBA, 1, -1, 1, 0, GL_RGBA, GL_UNSIGNED_BYTE, 0); in teximage3d_neg_width_height_depth()
2750 ctx.glTexImage3D(GL_TEXTURE_3D, 0, GL_RGBA, 1, 1, -1, 0, GL_RGBA, GL_UNSIGNED_BYTE, 0); in teximage3d_neg_width_height_depth()
2752 ctx.glTexImage3D(GL_TEXTURE_3D, 0, GL_RGBA, -1, -1, -1, 0, GL_RGBA, GL_UNSIGNED_BYTE, 0); in teximage3d_neg_width_height_depth()
2784 …ctx.glTexImage3D(GL_TEXTURE_3D, 0, GL_RGBA, max3DTextureSize, 1, 1, 0, GL_RGBA, GL_UNSIGNED_BYTE, … in teximage3d_max_width_height_depth()
2786 …ctx.glTexImage3D(GL_TEXTURE_3D, 0, GL_RGBA, 1, max3DTextureSize, 1, 0, GL_RGBA, GL_UNSIGNED_BYTE, … in teximage3d_max_width_height_depth()
2788 …ctx.glTexImage3D(GL_TEXTURE_3D, 0, GL_RGBA, 1, 1, max3DTextureSize, 0, GL_RGBA, GL_UNSIGNED_BYTE, … in teximage3d_max_width_height_depth()
2790 …ctx.glTexImage3D(GL_TEXTURE_3D, 0, GL_RGBA, max3DTextureSize, max3DTextureSize, max3DTextureSize, … in teximage3d_max_width_height_depth()
2809 ctx.glTexImage3D(GL_TEXTURE_3D, 0, GL_RGB, 1, 1, 1, -1, GL_RGB, GL_UNSIGNED_BYTE, 0); in teximage3d_invalid_border()
2811 ctx.glTexImage3D(GL_TEXTURE_3D, 0, GL_RGB, 1, 1, 1, 2, GL_RGB, GL_UNSIGNED_BYTE, 0); in teximage3d_invalid_border()
2839 ctx.glBindTexture (GL_TEXTURE_3D, texture); in teximage3d_invalid_buffer_target()
2846 ctx.glTexImage3D (GL_TEXTURE_3D, 0, GL_RGBA, 4, 4, 4, 0, GL_RGBA, GL_UNSIGNED_BYTE, 0); in teximage3d_invalid_buffer_target()
2852 ctx.glTexImage3D (GL_TEXTURE_3D, 0, GL_RGBA, 64, 64, 64, 0, GL_RGBA, GL_UNSIGNED_BYTE, 0); in teximage3d_invalid_buffer_target()
2858 …ctx.glTexImage3D (GL_TEXTURE_3D, 0, GL_RGB5_A1, 4, 4, 4, 0, GL_RGBA, GL_UNSIGNED_SHORT_5_5_5_1, … in teximage3d_invalid_buffer_target()
2874 ctx.glBindTexture (GL_TEXTURE_3D, texture); in texsubimage3d()
2875 ctx.glTexImage3D (GL_TEXTURE_3D, 0, GL_RGBA, 4, 4, 4, 0, GL_RGBA, GL_UNSIGNED_BYTE, 0); in texsubimage3d()
2886 ctx.glTexSubImage3D(GL_TEXTURE_3D, 0, 0, 0, 0, 0, 4, 4, 4, GL_UNSIGNED_BYTE, 0); in texsubimage3d()
2891 ctx.glTexSubImage3D(GL_TEXTURE_3D, 0, 0, 0, 0, 4, 4, 4, GL_RGB, 0, 0); in texsubimage3d()
2896 ctx.glTexSubImage3D(GL_TEXTURE_3D, 0, 0, 0, 0, 4, 4, 4, GL_RGB, GL_UNSIGNED_SHORT_4_4_4_4, 0); in texsubimage3d()
2898 ctx.glTexSubImage3D(GL_TEXTURE_3D, 0, 0, 0, 0, 4, 4, 4, GL_RGB, GL_UNSIGNED_SHORT_5_5_5_1, 0); in texsubimage3d()
2900 ctx.glTexSubImage3D(GL_TEXTURE_3D, 0, 0, 0, 0, 4, 4, 4, GL_RGB, GL_UNSIGNED_SHORT_5_5_5_1, 0); in texsubimage3d()
2902 ctx.glTexSubImage3D(GL_TEXTURE_3D, 0, 0, 0, 0, 4, 4, 4, GL_RGBA_INTEGER, GL_UNSIGNED_INT, 0); in texsubimage3d()
2904 ctx.glTexSubImage3D(GL_TEXTURE_3D, 0, 0, 0, 0, 4, 4, 4, GL_RGB, GL_FLOAT, 0); in texsubimage3d()
2915 ctx.glBindTexture (GL_TEXTURE_3D, textures[0]); in texsubimage3d_neg_level()
2916 ctx.glTexImage3D (GL_TEXTURE_3D, 0, GL_RGBA, 4, 4, 4, 0, GL_RGBA, GL_UNSIGNED_BYTE, 0); in texsubimage3d_neg_level()
2922 ctx.glTexSubImage3D(GL_TEXTURE_3D, -1, 0, 0, 0, 0, 0, 0, GL_RGBA, GL_UNSIGNED_BYTE, 0); in texsubimage3d_neg_level()
2946 ctx.glBindTexture (GL_TEXTURE_3D, textures[0]); in texsubimage3d_max_level()
2947 ctx.glTexImage3D (GL_TEXTURE_3D, 0, GL_RGBA, 4, 4, 4, 0, GL_RGBA, GL_UNSIGNED_BYTE, 0); in texsubimage3d_max_level()
2956 …ctx.glTexSubImage3D(GL_TEXTURE_3D, log2Max3DTextureSize, 0, 0, 0, 0, 0, 0, GL_RGBA, GL_UNSIGNED_BY… in texsubimage3d_max_level()
2972 ctx.glBindTexture (GL_TEXTURE_3D, textures[0]); in texsubimage3d_neg_offset()
2973 ctx.glTexImage3D (GL_TEXTURE_3D, 0, GL_RGBA, 4, 4, 4, 0, GL_RGBA, GL_UNSIGNED_BYTE, 0); in texsubimage3d_neg_offset()
2979 ctx.glTexSubImage3D(GL_TEXTURE_3D, 0, -1, 0, 0, 0, 0, 0, GL_RGBA, GL_UNSIGNED_BYTE, 0); in texsubimage3d_neg_offset()
2981 ctx.glTexSubImage3D(GL_TEXTURE_3D, 0, 0, -1, 0, 0, 0, 0, GL_RGBA, GL_UNSIGNED_BYTE, 0); in texsubimage3d_neg_offset()
2983 ctx.glTexSubImage3D(GL_TEXTURE_3D, 0, 0, 0, -1, 0, 0, 0, GL_RGBA, GL_UNSIGNED_BYTE, 0); in texsubimage3d_neg_offset()
2985 ctx.glTexSubImage3D(GL_TEXTURE_3D, 0, -1, -1, -1, 0, 0, 0, GL_RGBA, GL_UNSIGNED_BYTE, 0); in texsubimage3d_neg_offset()
3021 ctx.glBindTexture (GL_TEXTURE_3D, texture); in texsubimage3d_invalid_offset()
3022 ctx.glTexImage3D (GL_TEXTURE_3D, 0, GL_RGBA, 4, 4, 4, 0, GL_RGBA, GL_UNSIGNED_BYTE, 0); in texsubimage3d_invalid_offset()
3026 ctx.glTexSubImage3D(GL_TEXTURE_3D, 0, 2, 0, 0, 4, 4, 4, GL_RGBA, GL_UNSIGNED_BYTE, 0); in texsubimage3d_invalid_offset()
3031 ctx.glTexSubImage3D(GL_TEXTURE_3D, 0, 0, 2, 0, 4, 4, 4, GL_RGBA, GL_UNSIGNED_BYTE, 0); in texsubimage3d_invalid_offset()
3036 ctx.glTexSubImage3D(GL_TEXTURE_3D, 0, 0, 0, 2, 4, 4, 4, GL_RGBA, GL_UNSIGNED_BYTE, 0); in texsubimage3d_invalid_offset()
3046 ctx.glTexSubImage3D(GL_TEXTURE_3D, 0, 0, 0, 0, -1, 0, 0, GL_RGBA, GL_UNSIGNED_BYTE, 0); in texsubimage3d_neg_width_height()
3048 ctx.glTexSubImage3D(GL_TEXTURE_3D, 0, 0, 0, 0, 0, -1, 0, GL_RGBA, GL_UNSIGNED_BYTE, 0); in texsubimage3d_neg_width_height()
3050 ctx.glTexSubImage3D(GL_TEXTURE_3D, 0, 0, 0, 0, 0, 0, -1, GL_RGBA, GL_UNSIGNED_BYTE, 0); in texsubimage3d_neg_width_height()
3052 ctx.glTexSubImage3D(GL_TEXTURE_3D, 0, 0, 0, 0, -1, -1, -1, GL_RGBA, GL_UNSIGNED_BYTE, 0); in texsubimage3d_neg_width_height()
3077 ctx.glBindTexture (GL_TEXTURE_3D, texture); in texsubimage3d_invalid_buffer_target()
3078 ctx.glTexImage3D (GL_TEXTURE_3D, 0, GL_RGBA, 16, 16, 16, 0, GL_RGBA, GL_UNSIGNED_BYTE, 0); in texsubimage3d_invalid_buffer_target()
3088 ctx.glTexSubImage3D (GL_TEXTURE_3D, 0, 0, 0, 0, 4, 4, 4, GL_RGBA, GL_UNSIGNED_BYTE, 0); in texsubimage3d_invalid_buffer_target()
3094 ctx.glTexSubImage3D (GL_TEXTURE_3D, 0, 0, 0, 0, 16, 16, 16, GL_RGBA, GL_UNSIGNED_BYTE, 0); in texsubimage3d_invalid_buffer_target()
3101 ctx.glTexImage3D (GL_TEXTURE_3D, 0, GL_RGBA4, 4, 4, 4, 0, GL_RGBA, GL_UNSIGNED_SHORT_4_4_4_4, 0); in texsubimage3d_invalid_buffer_target()
3104 …ctx.glTexSubImage3D (GL_TEXTURE_3D, 0, 0, 0, 0, 4, 4, 4, GL_RGBA, GL_UNSIGNED_SHORT_4_4_4_4, (co… in texsubimage3d_invalid_buffer_target()
3120 ctx.glBindTexture (GL_TEXTURE_3D, texture); in copytexsubimage3d()
3121 ctx.glTexImage3D (GL_TEXTURE_3D, 0, GL_RGBA, 4, 4, 4, 0, GL_RGBA, GL_UNSIGNED_BYTE, 0); in copytexsubimage3d()
3135 ctx.glBindTexture(GL_TEXTURE_3D, textures[0]); in copytexsubimage3d_neg_level()
3136 ctx.glTexImage3D(GL_TEXTURE_3D, 0, GL_RGBA, 4, 4, 4, 0, GL_RGBA, GL_UNSIGNED_BYTE, 0); in copytexsubimage3d_neg_level()
3142 ctx.glCopyTexSubImage3D(GL_TEXTURE_3D, -1, 0, 0, 0, 0, 0, 4, 4); in copytexsubimage3d_neg_level()
3169 ctx.glBindTexture(GL_TEXTURE_3D, textures[0]); in copytexsubimage3d_max_level()
3170 ctx.glTexImage3D(GL_TEXTURE_3D, 0, GL_RGBA, 4, 4, 4, 0, GL_RGBA, GL_UNSIGNED_BYTE, 0); in copytexsubimage3d_max_level()
3176 ctx.glCopyTexSubImage3D(GL_TEXTURE_3D, log2Max3DTextureSize, 0, 0, 0, 0, 0, 4, 4); in copytexsubimage3d_max_level()
3203 ctx.glBindTexture (GL_TEXTURE_3D, texture); in copytexsubimage3d_neg_offset()
3204 ctx.glTexImage3D (GL_TEXTURE_3D, 0, GL_RGBA, 4, 4, 4, 0, GL_RGBA, GL_UNSIGNED_BYTE, 0); in copytexsubimage3d_neg_offset()
3207 ctx.glCopyTexSubImage3D(GL_TEXTURE_3D, 0, -1, 0, 0, 0, 0, 4, 4); in copytexsubimage3d_neg_offset()
3209 ctx.glCopyTexSubImage3D(GL_TEXTURE_3D, 0, 0, -1, 0, 0, 0, 4, 4); in copytexsubimage3d_neg_offset()
3211 ctx.glCopyTexSubImage3D(GL_TEXTURE_3D, 0, 0, 0, -1, 0, 0, 4, 4); in copytexsubimage3d_neg_offset()
3213 ctx.glCopyTexSubImage3D(GL_TEXTURE_3D, 0, -1, -1, -1, 0, 0, 4, 4); in copytexsubimage3d_neg_offset()
3224 ctx.glBindTexture (GL_TEXTURE_3D, texture); in copytexsubimage3d_invalid_offset()
3225 ctx.glTexImage3D (GL_TEXTURE_3D, 0, GL_RGBA, 4, 4, 4, 0, GL_RGBA, GL_UNSIGNED_BYTE, 0); in copytexsubimage3d_invalid_offset()
3228 ctx.glCopyTexSubImage3D(GL_TEXTURE_3D, 0, 1, 0, 0, 0, 0, 4, 4); in copytexsubimage3d_invalid_offset()
3233 ctx.glCopyTexSubImage3D(GL_TEXTURE_3D, 0, 0, 1, 0, 0, 0, 4, 4); in copytexsubimage3d_invalid_offset()
3238 ctx.glCopyTexSubImage3D(GL_TEXTURE_3D, 0, 0, 0, 4, 0, 0, 4, 4); in copytexsubimage3d_invalid_offset()
3249 ctx.glBindTexture (GL_TEXTURE_3D, texture); in copytexsubimage3d_neg_width_height()
3250 ctx.glTexImage3D (GL_TEXTURE_3D, 0, GL_RGBA, 4, 4, 4, 0, GL_RGBA, GL_UNSIGNED_BYTE, 0); in copytexsubimage3d_neg_width_height()
3253 ctx.glCopyTexSubImage3D(GL_TEXTURE_3D, 0, 0, 0, 0, 0, 0, -4, 4); in copytexsubimage3d_neg_width_height()
3258 ctx.glCopyTexSubImage3D(GL_TEXTURE_3D, 0, 0, 0, 0, 0, 0, 4, -4); in copytexsubimage3d_neg_width_height()
3271 ctx.glBindTexture (GL_TEXTURE_3D, texture[0]); in copytexsubimage3d_incomplete_framebuffer()
3272 ctx.glTexImage3D (GL_TEXTURE_3D, 0, GL_RGBA, 4, 4, 4, 0, GL_RGBA, GL_UNSIGNED_BYTE, 0); in copytexsubimage3d_incomplete_framebuffer()
3280 ctx.glCopyTexSubImage3D(GL_TEXTURE_3D, 0, 0, 0, 0, 0, 0, 4, 4); in copytexsubimage3d_incomplete_framebuffer()
3444 …ctx.glCompressedTexSubImage3D(GL_TEXTURE_3D, 0, 0, 0, 0, 18, 18, 1, GL_COMPRESSED_RGBA8_ETC2_EAC, … in compressedtexsubimage3d()
3642 ctx.glTexStorage2D(GL_TEXTURE_3D, 1, GL_RGBA8, 16, 16); in texstorage2d()
3771 ctx.glBindTexture(GL_TEXTURE_3D, textures[0]); in texstorage3d()
3775 ctx.glTexStorage3D(GL_TEXTURE_3D, 1, 0, 4, 4, 4); in texstorage3d()
3777 ctx.glTexStorage3D(GL_TEXTURE_3D, 1, GL_RGBA_INTEGER, 4, 4, 4); in texstorage3d()
3791 ctx.glTexStorage3D(GL_TEXTURE_3D, 1, GL_RGBA8, 0, 4, 4); in texstorage3d()
3793 ctx.glTexStorage3D(GL_TEXTURE_3D, 1, GL_RGBA8, 4, 0, 4); in texstorage3d()
3795 ctx.glTexStorage3D(GL_TEXTURE_3D, 1, GL_RGBA8, 4, 4, 0); in texstorage3d()
3797 ctx.glTexStorage3D(GL_TEXTURE_3D, 1, GL_RGBA8, 0, 0, 0); in texstorage3d()
3824 ctx.glBindTexture (GL_TEXTURE_3D, 0); in texstorage3d_invalid_binding()
3825 ctx.glTexStorage3D (GL_TEXTURE_3D, 1, GL_RGBA8, 4, 4, 4); in texstorage3d_invalid_binding()
3839 ctx.glBindTexture (GL_TEXTURE_3D, textures[0]); in texstorage3d_invalid_binding()
3840 ctx.glGetTexParameteriv(GL_TEXTURE_3D, GL_TEXTURE_IMMUTABLE_FORMAT, &immutable); in texstorage3d_invalid_binding()
3842 ctx.glTexStorage3D (GL_TEXTURE_3D, 1, GL_RGBA8, 4, 4, 4); in texstorage3d_invalid_binding()
3844 ctx.glGetTexParameteriv(GL_TEXTURE_3D, GL_TEXTURE_IMMUTABLE_FORMAT, &immutable); in texstorage3d_invalid_binding()
3846 ctx.glTexStorage3D (GL_TEXTURE_3D, 1, GL_RGBA8, 4, 4, 4); in texstorage3d_invalid_binding()
3872 ctx.glBindTexture(GL_TEXTURE_3D, textures[0]); in texstorage3d_invalid_levels()
3875 ctx.glTexStorage3D(GL_TEXTURE_3D, 0, GL_RGBA8, 4, 4, 4); in texstorage3d_invalid_levels()
3877 ctx.glTexStorage3D(GL_TEXTURE_3D, 0, GL_RGBA8, 0, 0, 0); in texstorage3d_invalid_levels()
3891 ctx.glTexStorage3D (GL_TEXTURE_3D, log2MaxSize, GL_RGBA8, 8, 2, 2); in texstorage3d_invalid_levels()
3893 ctx.glTexStorage3D (GL_TEXTURE_3D, log2MaxSize, GL_RGBA8, 2, 8, 2); in texstorage3d_invalid_levels()
3895 ctx.glTexStorage3D (GL_TEXTURE_3D, log2MaxSize, GL_RGBA8, 2, 2, 8); in texstorage3d_invalid_levels()
3897 ctx.glTexStorage3D (GL_TEXTURE_3D, log2MaxSize, GL_RGBA8, 8, 8, 8); in texstorage3d_invalid_levels()