|
|
|
|
/*
|
|
|
|
|
This file is part of Magnum.
|
|
|
|
|
|
|
|
|
|
Copyright © 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019,
|
|
|
|
|
2020, 2021, 2022 Vladimír Vondruš <mosra@centrum.cz>
|
|
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
|
copy of this software and associated documentation files (the "Software"),
|
|
|
|
|
to deal in the Software without restriction, including without limitation
|
|
|
|
|
the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
|
and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
|
Software is furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included
|
|
|
|
|
in all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
|
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
|
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
|
DEALINGS IN THE SOFTWARE.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <Corrade/TestSuite/Compare/Container.h>
|
|
|
|
|
|
|
|
|
|
#include "Magnum/Image.h"
|
|
|
|
|
#include "Magnum/ImageView.h"
|
|
|
|
|
#include "Magnum/GL/Context.h"
|
|
|
|
|
#include "Magnum/GL/Extensions.h"
|
|
|
|
|
#include "Magnum/GL/BufferImage.h"
|
|
|
|
|
#include "Magnum/GL/OpenGLTester.h"
|
|
|
|
|
#include "Magnum/GL/PixelFormat.h"
|
|
|
|
|
#include "Magnum/GL/TextureArray.h"
|
|
|
|
|
#include "Magnum/GL/TextureFormat.h"
|
|
|
|
|
#include "Magnum/Math/Color.h"
|
|
|
|
|
#include "Magnum/Math/Range.h"
|
|
|
|
|
|
GL: port label() / setLabel() away from std::string.
All the tests were updated to explicitly check that non-null-terminated
strings get handled properly (the GL label APIs have an explicit size,
so it *should*, but just in case). Also, because various subclasses
override the setter to return correct type for method chaining and the
override has to be deinlined to avoid relying on a StringView include,
the tests are now explicitly done for each leaf class, instead of the
subclass
The <string> being removed from the base class for all GL objects may
affect downstream projects which relied on it being included. In case of
Magnum, the breakages were already fixed in the previous commit.
Compile time improvement for the MagnumGL library alone is 0.2 second or
4% (6.1 seconds before, 5.9 after). Not bad, given that there's three
more files to compile and strings are still heavily used in other GL
debug output APIs and all shader stuff. For a build of just the GL
library and all tests, it goes down from 28.9 seconds to 28.1. Most
tests also still rely quite heavily on std::stringstream for debug
output testing, so the numbers still could go further.
5 years ago
|
|
|
#ifndef MAGNUM_TARGET_WEBGL
|
|
|
|
|
#include <Corrade/Containers/String.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_WEBGL
|
|
|
|
|
#include "Magnum/GL/ImageFormat.h"
|
|
|
|
|
#include "Magnum/GL/CubeMapTexture.h"
|
|
|
|
|
#include "Magnum/GL/CubeMapTextureArray.h"
|
|
|
|
|
#include "Magnum/GL/Texture.h"
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
namespace Magnum { namespace GL { namespace Test { namespace {
|
|
|
|
|
|
|
|
|
|
struct TextureArrayGLTest: OpenGLTester {
|
|
|
|
|
explicit TextureArrayGLTest();
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
void construct1D();
|
|
|
|
|
#endif
|
|
|
|
|
void construct2D();
|
|
|
|
|
|
|
|
|
|
void constructMove();
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
void wrap1D();
|
|
|
|
|
#endif
|
|
|
|
|
void wrap2D();
|
|
|
|
|
|
GL: port label() / setLabel() away from std::string.
All the tests were updated to explicitly check that non-null-terminated
strings get handled properly (the GL label APIs have an explicit size,
so it *should*, but just in case). Also, because various subclasses
override the setter to return correct type for method chaining and the
override has to be deinlined to avoid relying on a StringView include,
the tests are now explicitly done for each leaf class, instead of the
subclass
The <string> being removed from the base class for all GL objects may
affect downstream projects which relied on it being included. In case of
Magnum, the breakages were already fixed in the previous commit.
Compile time improvement for the MagnumGL library alone is 0.2 second or
4% (6.1 seconds before, 5.9 after). Not bad, given that there's three
more files to compile and strings are still heavily used in other GL
debug output APIs and all shader stuff. For a build of just the GL
library and all tests, it goes down from 28.9 seconds to 28.1. Most
tests also still rely quite heavily on std::stringstream for debug
output testing, so the numbers still could go further.
5 years ago
|
|
|
#ifndef MAGNUM_TARGET_WEBGL
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
void label1D();
|
|
|
|
|
#endif
|
|
|
|
|
void label2D();
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
void bind1D();
|
|
|
|
|
#endif
|
|
|
|
|
void bind2D();
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_WEBGL
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
void bindImage1D();
|
|
|
|
|
#endif
|
|
|
|
|
void bindImage2D();
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
template<class T> void sampling1D();
|
|
|
|
|
#endif
|
|
|
|
|
template<class T> void sampling2D();
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_WEBGL
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
void samplingSrgbDecode1D();
|
|
|
|
|
#endif
|
|
|
|
|
void samplingSrgbDecode2D();
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
void samplingSwizzle1D();
|
|
|
|
|
#endif
|
|
|
|
|
#if !defined(MAGNUM_TARGET_GLES2) && !defined(MAGNUM_TARGET_WEBGL)
|
|
|
|
|
void samplingSwizzle2D();
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
void samplingBorderInteger1D();
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef MAGNUM_TARGET_WEBGL
|
|
|
|
|
void samplingBorderInteger2D();
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
void samplingDepthStencilMode1D();
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef MAGNUM_TARGET_WEBGL
|
|
|
|
|
void samplingDepthStencilMode2D();
|
|
|
|
|
#endif
|
|
|
|
|
#if defined(MAGNUM_TARGET_GLES) && !defined(MAGNUM_TARGET_WEBGL)
|
|
|
|
|
void samplingBorder2D();
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
void storage1D();
|
|
|
|
|
#endif
|
|
|
|
|
void storage2D();
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_WEBGL
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
void view1D();
|
|
|
|
|
void view1DOnNonArray();
|
|
|
|
|
#endif
|
|
|
|
|
void view2D();
|
|
|
|
|
void view2DOnNonArray();
|
|
|
|
|
void view2DOnCubeMap();
|
|
|
|
|
void view2DOnCubeMapArray();
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
void image1D();
|
|
|
|
|
void image1DBuffer();
|
|
|
|
|
void image1DQueryView();
|
|
|
|
|
void subImage1D();
|
|
|
|
|
void subImage1DBuffer();
|
|
|
|
|
void subImage1DQuery();
|
|
|
|
|
void subImage1DQueryView();
|
|
|
|
|
void subImage1DQueryBuffer();
|
|
|
|
|
/* View query assertions tested in AbstractTextureGLTest */
|
|
|
|
|
|
|
|
|
|
void compressedImage1D();
|
|
|
|
|
void compressedImage1DBuffer();
|
|
|
|
|
void compressedImage1DQueryView();
|
|
|
|
|
void compressedSubImage1D();
|
|
|
|
|
void compressedSubImage1DBuffer();
|
|
|
|
|
void compressedSubImage1DQuery();
|
|
|
|
|
void compressedSubImage1DQueryView();
|
|
|
|
|
void compressedSubImage1DQueryBuffer();
|
|
|
|
|
/* View query assertions tested in AbstractTextureGLTest */
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
void image2D();
|
|
|
|
|
void image2DBuffer();
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
void image2DQueryView();
|
|
|
|
|
#endif
|
|
|
|
|
void subImage2D();
|
|
|
|
|
void subImage2DBuffer();
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
void subImage2DQuery();
|
|
|
|
|
void subImage2DQueryView();
|
|
|
|
|
void subImage2DQueryBuffer();
|
|
|
|
|
/* View query assertions tested in AbstractTextureGLTest */
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
void compressedImage2D();
|
|
|
|
|
void compressedImage2DBuffer();
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
void compressedImage2DQueryView();
|
|
|
|
|
#endif
|
|
|
|
|
void compressedSubImage2D();
|
|
|
|
|
void compressedSubImage2DBuffer();
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
void compressedSubImage2DQuery();
|
|
|
|
|
void compressedSubImage2DQueryView();
|
|
|
|
|
void compressedSubImage2DQueryBuffer();
|
|
|
|
|
/* View query assertions tested in AbstractTextureGLTest */
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
void generateMipmap1D();
|
|
|
|
|
#endif
|
|
|
|
|
void generateMipmap2D();
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
void invalidateImage1D();
|
|
|
|
|
#endif
|
|
|
|
|
void invalidateImage2D();
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
void invalidateSubImage1D();
|
|
|
|
|
#endif
|
|
|
|
|
void invalidateSubImage2D();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct GenericSampler {
|
|
|
|
|
typedef Magnum::SamplerFilter Filter;
|
|
|
|
|
typedef Magnum::SamplerMipmap Mipmap;
|
|
|
|
|
typedef Magnum::SamplerWrapping Wrapping;
|
|
|
|
|
};
|
|
|
|
|
struct GLSampler {
|
|
|
|
|
typedef GL::SamplerFilter Filter;
|
|
|
|
|
typedef GL::SamplerMipmap Mipmap;
|
|
|
|
|
typedef GL::SamplerWrapping Wrapping;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
constexpr UnsignedByte Data1D[]{
|
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
|
0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
|
|
|
|
|
0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const struct {
|
|
|
|
|
const char* name;
|
|
|
|
|
Containers::ArrayView<const UnsignedByte> data;
|
|
|
|
|
PixelStorage storage;
|
|
|
|
|
Containers::ArrayView<const UnsignedByte> dataSparse;
|
|
|
|
|
std::size_t offset;
|
|
|
|
|
} PixelStorage1DData[]{
|
|
|
|
|
{"default pixel storage",
|
|
|
|
|
Containers::arrayView(Data1D).exceptPrefix(8), {},
|
|
|
|
|
Containers::arrayView(Data1D).exceptPrefix(8), 0},
|
|
|
|
|
{"skip Y",
|
|
|
|
|
Containers::arrayView(Data1D).exceptPrefix(8), PixelStorage{}.setSkip({0, 1, 0}),
|
|
|
|
|
Containers::arrayView(Data1D), 8}};
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
constexpr UnsignedByte Data2D[]{
|
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
|
0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
|
|
|
|
|
0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,
|
|
|
|
|
0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,
|
|
|
|
|
0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const struct {
|
|
|
|
|
const char* name;
|
|
|
|
|
Containers::ArrayView<const UnsignedByte> data;
|
|
|
|
|
PixelStorage storage;
|
|
|
|
|
Containers::ArrayView<const UnsignedByte> dataSparse;
|
|
|
|
|
std::size_t offset;
|
|
|
|
|
} PixelStorage2DData[]{
|
|
|
|
|
{"default pixel storage",
|
|
|
|
|
Containers::arrayView(Data2D).exceptPrefix(16), {},
|
|
|
|
|
Containers::arrayView(Data2D).exceptPrefix(16), 0},
|
|
|
|
|
{"skip Z",
|
|
|
|
|
Containers::arrayView(Data2D).exceptPrefix(16), PixelStorage{}.setSkip({0, 0, 1}),
|
|
|
|
|
Containers::arrayView(Data2D), 16}};
|
|
|
|
|
|
|
|
|
|
/* Just 4x4x3 0x00 - 0x7f compressed using RGBA DXT3 by the driver */
|
|
|
|
|
constexpr UnsignedByte CompressedData2D[]{
|
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
|
0, 17, 17, 34, 34, 51, 51, 67,
|
|
|
|
|
232, 57, 0, 0, 213, 255, 170, 2,
|
|
|
|
|
68, 84, 85, 101, 102, 118, 119, 119,
|
|
|
|
|
239, 123, 8, 66, 213, 255, 170, 2
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const struct {
|
|
|
|
|
const char* name;
|
|
|
|
|
Containers::ArrayView<const UnsignedByte> data;
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
CompressedPixelStorage storage;
|
|
|
|
|
#endif
|
|
|
|
|
Containers::ArrayView<const UnsignedByte> dataSparse;
|
|
|
|
|
std::size_t offset;
|
|
|
|
|
} CompressedPixelStorage2DData[]{
|
|
|
|
|
{"default pixel storage",
|
|
|
|
|
Containers::arrayView(CompressedData2D).exceptPrefix(16),
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
{},
|
|
|
|
|
#endif
|
|
|
|
|
Containers::arrayView(CompressedData2D).exceptPrefix(16), 0},
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
{"skip Y",
|
|
|
|
|
Containers::arrayView(CompressedData2D).exceptPrefix(16),
|
|
|
|
|
CompressedPixelStorage{}
|
|
|
|
|
.setCompressedBlockSize({4, 4, 1})
|
|
|
|
|
.setCompressedBlockDataSize(16)
|
|
|
|
|
.setSkip({0, 0, 1}),
|
|
|
|
|
Containers::arrayView(CompressedData2D), 16}
|
|
|
|
|
#endif
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
TextureArrayGLTest::TextureArrayGLTest() {
|
|
|
|
|
addTests({
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
&TextureArrayGLTest::construct1D,
|
|
|
|
|
#endif
|
|
|
|
|
&TextureArrayGLTest::construct2D,
|
|
|
|
|
|
|
|
|
|
&TextureArrayGLTest::constructMove,
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
&TextureArrayGLTest::wrap1D,
|
|
|
|
|
#endif
|
|
|
|
|
&TextureArrayGLTest::wrap2D,
|
|
|
|
|
|
GL: port label() / setLabel() away from std::string.
All the tests were updated to explicitly check that non-null-terminated
strings get handled properly (the GL label APIs have an explicit size,
so it *should*, but just in case). Also, because various subclasses
override the setter to return correct type for method chaining and the
override has to be deinlined to avoid relying on a StringView include,
the tests are now explicitly done for each leaf class, instead of the
subclass
The <string> being removed from the base class for all GL objects may
affect downstream projects which relied on it being included. In case of
Magnum, the breakages were already fixed in the previous commit.
Compile time improvement for the MagnumGL library alone is 0.2 second or
4% (6.1 seconds before, 5.9 after). Not bad, given that there's three
more files to compile and strings are still heavily used in other GL
debug output APIs and all shader stuff. For a build of just the GL
library and all tests, it goes down from 28.9 seconds to 28.1. Most
tests also still rely quite heavily on std::stringstream for debug
output testing, so the numbers still could go further.
5 years ago
|
|
|
#ifndef MAGNUM_TARGET_WEBGL
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
&TextureArrayGLTest::label1D,
|
|
|
|
|
#endif
|
|
|
|
|
&TextureArrayGLTest::label2D,
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
&TextureArrayGLTest::bind1D,
|
|
|
|
|
#endif
|
|
|
|
|
&TextureArrayGLTest::bind2D,
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_WEBGL
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
&TextureArrayGLTest::bindImage1D,
|
|
|
|
|
#endif
|
|
|
|
|
&TextureArrayGLTest::bindImage2D,
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
&TextureArrayGLTest::sampling1D<GenericSampler>,
|
|
|
|
|
&TextureArrayGLTest::sampling1D<GLSampler>,
|
|
|
|
|
#endif
|
|
|
|
|
&TextureArrayGLTest::sampling2D<GenericSampler>,
|
|
|
|
|
&TextureArrayGLTest::sampling2D<GLSampler>,
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_WEBGL
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
&TextureArrayGLTest::samplingSrgbDecode1D,
|
|
|
|
|
#endif
|
|
|
|
|
&TextureArrayGLTest::samplingSrgbDecode2D,
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
&TextureArrayGLTest::samplingSwizzle1D,
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef MAGNUM_TARGET_WEBGL
|
|
|
|
|
&TextureArrayGLTest::samplingSwizzle2D,
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
&TextureArrayGLTest::samplingBorderInteger1D,
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef MAGNUM_TARGET_WEBGL
|
|
|
|
|
&TextureArrayGLTest::samplingBorderInteger2D,
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
&TextureArrayGLTest::samplingDepthStencilMode1D,
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef MAGNUM_TARGET_WEBGL
|
|
|
|
|
&TextureArrayGLTest::samplingDepthStencilMode2D,
|
|
|
|
|
#endif
|
|
|
|
|
#if defined(MAGNUM_TARGET_GLES) && !defined(MAGNUM_TARGET_WEBGL)
|
|
|
|
|
&TextureArrayGLTest::samplingBorder2D,
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
&TextureArrayGLTest::storage1D,
|
|
|
|
|
#endif
|
|
|
|
|
&TextureArrayGLTest::storage2D,
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_WEBGL
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
&TextureArrayGLTest::view1D,
|
|
|
|
|
&TextureArrayGLTest::view1DOnNonArray,
|
|
|
|
|
#endif
|
|
|
|
|
&TextureArrayGLTest::view2D,
|
|
|
|
|
&TextureArrayGLTest::view2DOnNonArray,
|
|
|
|
|
&TextureArrayGLTest::view2DOnCubeMap,
|
|
|
|
|
&TextureArrayGLTest::view2DOnCubeMapArray,
|
|
|
|
|
#endif
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
addInstancedTests({
|
|
|
|
|
&TextureArrayGLTest::image1D,
|
|
|
|
|
&TextureArrayGLTest::image1DBuffer,
|
|
|
|
|
&TextureArrayGLTest::image1DQueryView,
|
|
|
|
|
&TextureArrayGLTest::subImage1D,
|
|
|
|
|
&TextureArrayGLTest::subImage1DBuffer,
|
|
|
|
|
&TextureArrayGLTest::subImage1DQuery,
|
|
|
|
|
&TextureArrayGLTest::subImage1DQueryView,
|
|
|
|
|
&TextureArrayGLTest::subImage1DQueryBuffer},
|
|
|
|
|
Containers::arraySize(PixelStorage1DData));
|
|
|
|
|
|
|
|
|
|
addTests({&TextureArrayGLTest::compressedImage1D,
|
|
|
|
|
&TextureArrayGLTest::compressedImage1DBuffer,
|
|
|
|
|
&TextureArrayGLTest::compressedImage1DQueryView,
|
|
|
|
|
&TextureArrayGLTest::compressedSubImage1D,
|
|
|
|
|
&TextureArrayGLTest::compressedSubImage1DBuffer,
|
|
|
|
|
&TextureArrayGLTest::compressedSubImage1DQuery,
|
|
|
|
|
&TextureArrayGLTest::compressedSubImage1DQueryView,
|
|
|
|
|
&TextureArrayGLTest::compressedSubImage1DQueryBuffer});
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
addInstancedTests({
|
|
|
|
|
&TextureArrayGLTest::image2D,
|
|
|
|
|
&TextureArrayGLTest::image2DBuffer,
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
&TextureArrayGLTest::image2DQueryView,
|
|
|
|
|
#endif
|
|
|
|
|
&TextureArrayGLTest::subImage2D,
|
|
|
|
|
&TextureArrayGLTest::subImage2DBuffer,
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
&TextureArrayGLTest::subImage2DQuery,
|
|
|
|
|
&TextureArrayGLTest::subImage2DQueryView,
|
|
|
|
|
&TextureArrayGLTest::subImage2DQueryBuffer
|
|
|
|
|
#endif
|
|
|
|
|
}, Containers::arraySize(PixelStorage2DData));
|
|
|
|
|
|
|
|
|
|
addInstancedTests({
|
|
|
|
|
&TextureArrayGLTest::compressedImage2D,
|
|
|
|
|
&TextureArrayGLTest::compressedImage2DBuffer,
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
&TextureArrayGLTest::compressedImage2DQueryView,
|
|
|
|
|
#endif
|
|
|
|
|
&TextureArrayGLTest::compressedSubImage2D,
|
|
|
|
|
&TextureArrayGLTest::compressedSubImage2DBuffer,
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
&TextureArrayGLTest::compressedSubImage2DQuery,
|
|
|
|
|
&TextureArrayGLTest::compressedSubImage2DQueryView,
|
|
|
|
|
&TextureArrayGLTest::compressedSubImage2DQueryBuffer
|
|
|
|
|
#endif
|
|
|
|
|
}, Containers::arraySize(CompressedPixelStorage2DData));
|
|
|
|
|
|
|
|
|
|
addTests({
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
&TextureArrayGLTest::generateMipmap1D,
|
|
|
|
|
#endif
|
|
|
|
|
&TextureArrayGLTest::generateMipmap2D,
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
&TextureArrayGLTest::invalidateImage1D,
|
|
|
|
|
#endif
|
|
|
|
|
&TextureArrayGLTest::invalidateImage2D,
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
&TextureArrayGLTest::invalidateSubImage1D,
|
|
|
|
|
#endif
|
|
|
|
|
&TextureArrayGLTest::invalidateSubImage2D
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
GL: port label() / setLabel() away from std::string.
All the tests were updated to explicitly check that non-null-terminated
strings get handled properly (the GL label APIs have an explicit size,
so it *should*, but just in case). Also, because various subclasses
override the setter to return correct type for method chaining and the
override has to be deinlined to avoid relying on a StringView include,
the tests are now explicitly done for each leaf class, instead of the
subclass
The <string> being removed from the base class for all GL objects may
affect downstream projects which relied on it being included. In case of
Magnum, the breakages were already fixed in the previous commit.
Compile time improvement for the MagnumGL library alone is 0.2 second or
4% (6.1 seconds before, 5.9 after). Not bad, given that there's three
more files to compile and strings are still heavily used in other GL
debug output APIs and all shader stuff. For a build of just the GL
library and all tests, it goes down from 28.9 seconds to 28.1. Most
tests also still rely quite heavily on std::stringstream for debug
output testing, so the numbers still could go further.
5 years ago
|
|
|
#ifndef MAGNUM_TARGET_WEBGL
|
|
|
|
|
using namespace Containers::Literals;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
void TextureArrayGLTest::construct1D() {
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_array>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_array::string() << "is not supported.");
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
Texture1DArray texture;
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
CORRADE_VERIFY(texture.id() > 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
void TextureArrayGLTest::construct2D() {
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_array>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_array::string() << "is not supported.");
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
Texture2DArray texture;
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
CORRADE_VERIFY(texture.id() > 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TextureArrayGLTest::constructMove() {
|
|
|
|
|
/* Move constructor tested in AbstractTexture, here we just verify there
|
|
|
|
|
are no extra members that would need to be taken care of */
|
|
|
|
|
CORRADE_COMPARE(sizeof(Texture2DArray), sizeof(AbstractTexture));
|
|
|
|
|
|
|
|
|
|
CORRADE_VERIFY(std::is_nothrow_move_constructible<Texture2DArray>::value);
|
|
|
|
|
CORRADE_VERIFY(std::is_nothrow_move_assignable<Texture2DArray>::value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
void TextureArrayGLTest::wrap1D() {
|
|
|
|
|
GLuint id;
|
|
|
|
|
glGenTextures(1, &id);
|
|
|
|
|
|
|
|
|
|
/* Releasing won't delete anything */
|
|
|
|
|
{
|
|
|
|
|
auto texture = Texture1DArray::wrap(id, ObjectFlag::DeleteOnDestruction);
|
|
|
|
|
CORRADE_COMPARE(texture.release(), id);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ...so we can wrap it again */
|
|
|
|
|
Texture1DArray::wrap(id);
|
|
|
|
|
glDeleteTextures(1, &id);
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
void TextureArrayGLTest::wrap2D() {
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_array>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_array::string() << "is not supported.");
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
GLuint id;
|
|
|
|
|
glGenTextures(1, &id);
|
|
|
|
|
|
|
|
|
|
/* Releasing won't delete anything */
|
|
|
|
|
{
|
|
|
|
|
auto texture = Texture2DArray::wrap(id, ObjectFlag::DeleteOnDestruction);
|
|
|
|
|
CORRADE_COMPARE(texture.release(), id);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ...so we can wrap it again */
|
|
|
|
|
Texture2DArray::wrap(id);
|
|
|
|
|
glDeleteTextures(1, &id);
|
|
|
|
|
}
|
|
|
|
|
|
GL: port label() / setLabel() away from std::string.
All the tests were updated to explicitly check that non-null-terminated
strings get handled properly (the GL label APIs have an explicit size,
so it *should*, but just in case). Also, because various subclasses
override the setter to return correct type for method chaining and the
override has to be deinlined to avoid relying on a StringView include,
the tests are now explicitly done for each leaf class, instead of the
subclass
The <string> being removed from the base class for all GL objects may
affect downstream projects which relied on it being included. In case of
Magnum, the breakages were already fixed in the previous commit.
Compile time improvement for the MagnumGL library alone is 0.2 second or
4% (6.1 seconds before, 5.9 after). Not bad, given that there's three
more files to compile and strings are still heavily used in other GL
debug output APIs and all shader stuff. For a build of just the GL
library and all tests, it goes down from 28.9 seconds to 28.1. Most
tests also still rely quite heavily on std::stringstream for debug
output testing, so the numbers still could go further.
5 years ago
|
|
|
#ifndef MAGNUM_TARGET_WEBGL
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
void TextureArrayGLTest::label1D() {
|
|
|
|
|
/* No-Op version is tested in AbstractObjectGLTest */
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::KHR::debug>() &&
|
|
|
|
|
!Context::current().isExtensionSupported<Extensions::EXT::debug_label>())
|
|
|
|
|
CORRADE_SKIP("Required extension is not available");
|
|
|
|
|
|
|
|
|
|
Texture1DArray texture;
|
|
|
|
|
CORRADE_COMPARE(texture.label(), "");
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
/* Test the string size gets correctly used, instead of relying on null
|
|
|
|
|
termination */
|
|
|
|
|
texture.setLabel("MyTexture!"_s.exceptSuffix(1));
|
GL: port label() / setLabel() away from std::string.
All the tests were updated to explicitly check that non-null-terminated
strings get handled properly (the GL label APIs have an explicit size,
so it *should*, but just in case). Also, because various subclasses
override the setter to return correct type for method chaining and the
override has to be deinlined to avoid relying on a StringView include,
the tests are now explicitly done for each leaf class, instead of the
subclass
The <string> being removed from the base class for all GL objects may
affect downstream projects which relied on it being included. In case of
Magnum, the breakages were already fixed in the previous commit.
Compile time improvement for the MagnumGL library alone is 0.2 second or
4% (6.1 seconds before, 5.9 after). Not bad, given that there's three
more files to compile and strings are still heavily used in other GL
debug output APIs and all shader stuff. For a build of just the GL
library and all tests, it goes down from 28.9 seconds to 28.1. Most
tests also still rely quite heavily on std::stringstream for debug
output testing, so the numbers still could go further.
5 years ago
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
CORRADE_COMPARE(texture.label(), "MyTexture");
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
void TextureArrayGLTest::label2D() {
|
|
|
|
|
/* No-Op version is tested in AbstractObjectGLTest */
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::KHR::debug>() &&
|
|
|
|
|
!Context::current().isExtensionSupported<Extensions::EXT::debug_label>())
|
|
|
|
|
CORRADE_SKIP("Required extension is not available");
|
|
|
|
|
|
|
|
|
|
Texture2DArray texture;
|
|
|
|
|
CORRADE_COMPARE(texture.label(), "");
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
/* Test the string size gets correctly used, instead of relying on null
|
|
|
|
|
termination */
|
|
|
|
|
texture.setLabel("MyTexture!"_s.exceptSuffix(1));
|
GL: port label() / setLabel() away from std::string.
All the tests were updated to explicitly check that non-null-terminated
strings get handled properly (the GL label APIs have an explicit size,
so it *should*, but just in case). Also, because various subclasses
override the setter to return correct type for method chaining and the
override has to be deinlined to avoid relying on a StringView include,
the tests are now explicitly done for each leaf class, instead of the
subclass
The <string> being removed from the base class for all GL objects may
affect downstream projects which relied on it being included. In case of
Magnum, the breakages were already fixed in the previous commit.
Compile time improvement for the MagnumGL library alone is 0.2 second or
4% (6.1 seconds before, 5.9 after). Not bad, given that there's three
more files to compile and strings are still heavily used in other GL
debug output APIs and all shader stuff. For a build of just the GL
library and all tests, it goes down from 28.9 seconds to 28.1. Most
tests also still rely quite heavily on std::stringstream for debug
output testing, so the numbers still could go further.
5 years ago
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
CORRADE_COMPARE(texture.label(), "MyTexture");
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
void TextureArrayGLTest::bind1D() {
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_array>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_array::string() << "is not supported.");
|
|
|
|
|
|
|
|
|
|
Texture1DArray texture;
|
|
|
|
|
texture.bind(15);
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
AbstractTexture::unbind(15);
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
AbstractTexture::bind(7, {&texture, nullptr, &texture});
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
AbstractTexture::unbind(7, 3);
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
void TextureArrayGLTest::bind2D() {
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_array>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_array::string() << "is not supported.");
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
Texture2DArray texture;
|
|
|
|
|
texture.bind(15);
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
AbstractTexture::unbind(15);
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
AbstractTexture::bind(7, {&texture, nullptr, &texture});
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
AbstractTexture::unbind(7, 3);
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_WEBGL
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
void TextureArrayGLTest::bindImage1D() {
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::ARB::shader_image_load_store>())
|
|
|
|
|
CORRADE_SKIP(Extensions::ARB::shader_image_load_store::string() << "is not supported.");
|
|
|
|
|
|
|
|
|
|
Texture1DArray texture;
|
|
|
|
|
texture.setStorage(1, TextureFormat::RGBA8, {32, 4})
|
|
|
|
|
.bindImage(2, 0, 1, ImageAccess::ReadWrite, ImageFormat::RGBA8);
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
texture.bindImageLayered(3, 0, ImageAccess::ReadWrite, ImageFormat::RGBA8);
|
|
|
|
|
|
|
|
|
|
AbstractTexture::unbindImage(2);
|
|
|
|
|
AbstractTexture::unbindImage(3);
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
AbstractTexture::bindImages(1, {&texture, nullptr, &texture});
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
AbstractTexture::unbindImages(1, 3);
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
void TextureArrayGLTest::bindImage2D() {
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::ARB::shader_image_load_store>())
|
|
|
|
|
CORRADE_SKIP(Extensions::ARB::shader_image_load_store::string() << "is not supported.");
|
|
|
|
|
#else
|
|
|
|
|
if(!Context::current().isVersionSupported(Version::GLES310))
|
|
|
|
|
CORRADE_SKIP("OpenGL ES 3.1 is not supported.");
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
Texture2DArray texture;
|
|
|
|
|
texture.setStorage(1, TextureFormat::RGBA8, {32, 32, 4})
|
|
|
|
|
.bindImage(2, 0, 1, ImageAccess::ReadWrite, ImageFormat::RGBA8);
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
texture.bindImageLayered(3, 0, ImageAccess::ReadWrite, ImageFormat::RGBA8);
|
|
|
|
|
|
|
|
|
|
AbstractTexture::unbindImage(2);
|
|
|
|
|
AbstractTexture::unbindImage(3);
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
AbstractTexture::bindImages(1, {&texture, nullptr, &texture});
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
AbstractTexture::unbindImages(1, 3);
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
template<class T> void TextureArrayGLTest::sampling1D() {
|
|
|
|
|
setTestCaseTemplateName(std::is_same<T, GenericSampler>::value ?
|
|
|
|
|
"GenericSampler" : "GLSampler");
|
|
|
|
|
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_array>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_array::string() << "is not supported.");
|
|
|
|
|
|
|
|
|
|
Texture1DArray texture;
|
|
|
|
|
texture.setMinificationFilter(T::Filter::Linear, T::Mipmap::Linear)
|
|
|
|
|
.setMagnificationFilter(T::Filter::Linear)
|
|
|
|
|
.setMinLod(-750.0f)
|
|
|
|
|
.setMaxLod(750.0f)
|
|
|
|
|
.setLodBias(0.5f)
|
|
|
|
|
.setBaseLevel(1)
|
|
|
|
|
.setMaxLevel(750)
|
|
|
|
|
.setWrapping(T::Wrapping::ClampToBorder)
|
|
|
|
|
.setBorderColor(Color3(0.5f))
|
|
|
|
|
.setMaxAnisotropy(Sampler::maxMaxAnisotropy())
|
|
|
|
|
.setCompareMode(SamplerCompareMode::CompareRefToTexture)
|
|
|
|
|
.setCompareFunction(SamplerCompareFunction::GreaterOrEqual);
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TextureArrayGLTest::samplingSrgbDecode1D() {
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_array>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_array::string() << "is not supported.");
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_sRGB_decode>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_sRGB_decode::string() << "is not supported.");
|
|
|
|
|
|
|
|
|
|
Texture1DArray texture;
|
|
|
|
|
texture.setSrgbDecode(false);
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TextureArrayGLTest::samplingSwizzle1D() {
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_array>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_array::string() << "is not supported.");
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::ARB::texture_swizzle>())
|
|
|
|
|
CORRADE_SKIP(Extensions::ARB::texture_swizzle::string() << "is not supported.");
|
|
|
|
|
|
|
|
|
|
Texture1DArray texture;
|
|
|
|
|
texture.setSwizzle<'b', 'g', 'r', '0'>();
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TextureArrayGLTest::samplingBorderInteger1D() {
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_array>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_array::string() << "is not supported.");
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_integer>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_integer::string() << "is not supported.");
|
|
|
|
|
|
|
|
|
|
Texture1DArray a;
|
|
|
|
|
a.setWrapping(SamplerWrapping::ClampToBorder)
|
|
|
|
|
.setBorderColor(Vector4i(1, 56, 78, -2));
|
|
|
|
|
Texture1DArray b;
|
|
|
|
|
b.setWrapping(SamplerWrapping::ClampToBorder)
|
|
|
|
|
.setBorderColor(Vector4ui(35, 56, 78, 15));
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TextureArrayGLTest::samplingDepthStencilMode1D() {
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_array>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_array::string() << "is not supported.");
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::ARB::stencil_texturing>())
|
|
|
|
|
CORRADE_SKIP(Extensions::ARB::stencil_texturing::string() << "is not supported.");
|
|
|
|
|
|
|
|
|
|
Texture1DArray texture;
|
|
|
|
|
texture.setDepthStencilMode(SamplerDepthStencilMode::StencilIndex);
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
template<class T> void TextureArrayGLTest::sampling2D() {
|
|
|
|
|
setTestCaseTemplateName(std::is_same<T, GenericSampler>::value ?
|
|
|
|
|
"GenericSampler" : "GLSampler");
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_array>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_array::string() << "is not supported.");
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
Texture2DArray texture;
|
|
|
|
|
texture.setMinificationFilter(T::Filter::Linear, T::Mipmap::Linear)
|
|
|
|
|
.setMagnificationFilter(T::Filter::Linear)
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES2
|
|
|
|
|
.setMinLod(-750.0f)
|
|
|
|
|
.setMaxLod(750.0f)
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
.setLodBias(0.5f)
|
|
|
|
|
#endif
|
|
|
|
|
.setBaseLevel(1)
|
|
|
|
|
.setMaxLevel(750)
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
.setWrapping(T::Wrapping::ClampToBorder)
|
|
|
|
|
.setBorderColor(Color3(0.5f))
|
|
|
|
|
#else
|
|
|
|
|
.setWrapping(T::Wrapping::ClampToEdge)
|
|
|
|
|
#endif
|
|
|
|
|
.setMaxAnisotropy(Sampler::maxMaxAnisotropy())
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
.setCompareMode(SamplerCompareMode::CompareRefToTexture)
|
|
|
|
|
.setCompareFunction(SamplerCompareFunction::GreaterOrEqual)
|
|
|
|
|
#endif
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_WEBGL
|
|
|
|
|
void TextureArrayGLTest::samplingSrgbDecode2D() {
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_array>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_array::string() << "is not supported.");
|
|
|
|
|
#endif
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_sRGB_decode>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_sRGB_decode::string() << "is not supported.");
|
|
|
|
|
|
|
|
|
|
Texture2DArray texture;
|
|
|
|
|
texture.setSrgbDecode(false);
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#if !defined(MAGNUM_TARGET_GLES2) && !defined(MAGNUM_TARGET_WEBGL)
|
|
|
|
|
void TextureArrayGLTest::samplingSwizzle2D() {
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_array>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_array::string() << "is not supported.");
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::ARB::texture_swizzle>())
|
|
|
|
|
CORRADE_SKIP(Extensions::ARB::texture_swizzle::string() << "is not supported.");
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
Texture2DArray texture;
|
|
|
|
|
texture.setSwizzle<'b', 'g', 'r', '0'>();
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#if defined(MAGNUM_TARGET_GLES2) && !defined(MAGNUM_TARGET_WEBGL)
|
|
|
|
|
void TextureArrayGLTest::samplingMaxLevel2D() {
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::APPLE::texture_max_level>())
|
|
|
|
|
CORRADE_SKIP(Extensions::APPLE::texture_max_level::string() << "is not supported.");
|
|
|
|
|
|
|
|
|
|
Texture2DArray texture;
|
|
|
|
|
texture.setMaxLevel(750);
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TextureArrayGLTest::samplingCompare2D() {
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::shadow_samplers>() ||
|
|
|
|
|
!Context::current().isExtensionSupported<Extensions::NV::shadow_samplers_array>())
|
|
|
|
|
CORRADE_SKIP(Extensions::NV::shadow_samplers_array::string() << "is not supported.");
|
|
|
|
|
|
|
|
|
|
Texture2DArray texture;
|
|
|
|
|
texture.setCompareMode(SamplerCompareMode::CompareRefToTexture)
|
|
|
|
|
.setCompareFunction(SamplerCompareFunction::GreaterOrEqual);
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#if !defined(MAGNUM_TARGET_GLES2) && !defined(MAGNUM_TARGET_WEBGL)
|
|
|
|
|
void TextureArrayGLTest::samplingBorderInteger2D() {
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_array>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_array::string() << "is not supported.");
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_integer>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_integer::string() << "is not supported.");
|
|
|
|
|
#else
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_border_clamp>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_border_clamp::string() << "is not supported.");
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
Texture2DArray a;
|
|
|
|
|
a.setWrapping(SamplerWrapping::ClampToBorder)
|
|
|
|
|
.setBorderColor(Vector4i(1, 56, 78, -2));
|
|
|
|
|
Texture2DArray b;
|
|
|
|
|
b.setWrapping(SamplerWrapping::ClampToBorder)
|
|
|
|
|
.setBorderColor(Vector4ui(35, 56, 78, 15));
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_WEBGL
|
|
|
|
|
void TextureArrayGLTest::samplingDepthStencilMode2D() {
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_array>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_array::string() << "is not supported.");
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::ARB::stencil_texturing>())
|
|
|
|
|
CORRADE_SKIP(Extensions::ARB::stencil_texturing::string() << "is not supported.");
|
|
|
|
|
#else
|
|
|
|
|
if(!Context::current().isVersionSupported(Version::GLES310))
|
|
|
|
|
CORRADE_SKIP("OpenGL ES 3.1 is not supported.");
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
Texture2DArray texture;
|
|
|
|
|
texture.setDepthStencilMode(SamplerDepthStencilMode::StencilIndex);
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#if defined(MAGNUM_TARGET_GLES) && !defined(MAGNUM_TARGET_WEBGL)
|
|
|
|
|
void TextureArrayGLTest::samplingBorder2D() {
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::NV::texture_border_clamp>() &&
|
|
|
|
|
!Context::current().isExtensionSupported<Extensions::EXT::texture_border_clamp>())
|
|
|
|
|
CORRADE_SKIP("No required extension is supported.");
|
|
|
|
|
|
|
|
|
|
Texture2DArray texture;
|
|
|
|
|
texture.setWrapping(SamplerWrapping::ClampToBorder)
|
|
|
|
|
.setBorderColor(Color3(0.5f));
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
void TextureArrayGLTest::storage1D() {
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_array>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_array::string() << "is not supported.");
|
|
|
|
|
|
|
|
|
|
Texture1DArray texture;
|
|
|
|
|
texture.setStorage(5, TextureFormat::RGBA8, Vector2i(32));
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
CORRADE_COMPARE(texture.imageSize(0), Vector2i(32, 32));
|
|
|
|
|
CORRADE_COMPARE(texture.imageSize(1), Vector2i(16, 32));
|
|
|
|
|
CORRADE_COMPARE(texture.imageSize(2), Vector2i( 8, 32));
|
|
|
|
|
CORRADE_COMPARE(texture.imageSize(3), Vector2i( 4, 32));
|
|
|
|
|
CORRADE_COMPARE(texture.imageSize(4), Vector2i( 2, 32));
|
|
|
|
|
CORRADE_COMPARE(texture.imageSize(5), Vector2i( 0, 0)); /* not available */
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
void TextureArrayGLTest::storage2D() {
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_array>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_array::string() << "is not supported.");
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
Texture2DArray texture;
|
|
|
|
|
texture.setStorage(5, TextureFormat::RGBA8, Vector3i(32));
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
#if !defined(MAGNUM_TARGET_GLES2) && !defined(MAGNUM_TARGET_WEBGL)
|
|
|
|
|
#ifdef MAGNUM_TARGET_GLES
|
|
|
|
|
if(!Context::current().isVersionSupported(Version::GLES310))
|
|
|
|
|
CORRADE_SKIP("OpenGL ES 3.1 not supported, skipping image size testing");
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
CORRADE_COMPARE(texture.imageSize(0), Vector3i(32, 32, 32));
|
|
|
|
|
CORRADE_COMPARE(texture.imageSize(1), Vector3i(16, 16, 32));
|
|
|
|
|
CORRADE_COMPARE(texture.imageSize(2), Vector3i( 8, 8, 32));
|
|
|
|
|
CORRADE_COMPARE(texture.imageSize(3), Vector3i( 4, 4, 32));
|
|
|
|
|
CORRADE_COMPARE(texture.imageSize(4), Vector3i( 2, 2, 32));
|
|
|
|
|
CORRADE_COMPARE(texture.imageSize(5), Vector3i( 0, 0, 0)); /* not available */
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_WEBGL
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
void TextureArrayGLTest::view1D() {
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::ARB::texture_view>())
|
|
|
|
|
CORRADE_SKIP(Extensions::ARB::texture_view::string() << "is not supported.");
|
|
|
|
|
|
|
|
|
|
Texture1DArray texture;
|
|
|
|
|
texture.setStorage(5, TextureFormat::RGBA8, {128, 7});
|
|
|
|
|
|
|
|
|
|
auto view = Texture1DArray::view(texture, TextureFormat::RGBA8, 2, 3, 4, 3);
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
CORRADE_COMPARE(view.imageSize(0), (Vector2i{32, 3}));
|
|
|
|
|
CORRADE_COMPARE(view.imageSize(1), (Vector2i{16, 3}));
|
|
|
|
|
CORRADE_COMPARE(view.imageSize(2), (Vector2i{8, 3}));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TextureArrayGLTest::view1DOnNonArray() {
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::ARB::texture_view>())
|
|
|
|
|
CORRADE_SKIP(Extensions::ARB::texture_view::string() << "is not supported.");
|
|
|
|
|
|
|
|
|
|
Texture1D texture;
|
|
|
|
|
texture.setStorage(5, TextureFormat::RGBA8, 128);
|
|
|
|
|
|
|
|
|
|
auto view = Texture1DArray::view(texture, TextureFormat::RGBA8, 2, 3);
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
CORRADE_COMPARE(view.imageSize(0), (Vector2i{32, 1}));
|
|
|
|
|
CORRADE_COMPARE(view.imageSize(1), (Vector2i{16, 1}));
|
|
|
|
|
CORRADE_COMPARE(view.imageSize(2), (Vector2i{8, 1}));
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
void TextureArrayGLTest::view2D() {
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::ARB::texture_view>())
|
|
|
|
|
CORRADE_SKIP(Extensions::ARB::texture_view::string() << "is not supported.");
|
|
|
|
|
#else
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_view>() &&
|
|
|
|
|
!Context::current().isExtensionSupported<Extensions::OES::texture_view>())
|
|
|
|
|
CORRADE_SKIP("Neither" << Extensions::EXT::texture_view::string() << "nor" << Extensions::OES::texture_view::string() << "is supported.");
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
Texture2DArray texture;
|
|
|
|
|
texture.setStorage(5, TextureFormat::RGBA8, {128, 32, 7});
|
|
|
|
|
|
|
|
|
|
auto view = Texture2DArray::view(texture, TextureFormat::RGBA8, 2, 3, 4, 3);
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
CORRADE_COMPARE(view.imageSize(0), (Vector3i{32, 8, 3}));
|
|
|
|
|
CORRADE_COMPARE(view.imageSize(1), (Vector3i{16, 4, 3}));
|
|
|
|
|
CORRADE_COMPARE(view.imageSize(2), (Vector3i{8, 2, 3}));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TextureArrayGLTest::view2DOnNonArray() {
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::ARB::texture_view>())
|
|
|
|
|
CORRADE_SKIP(Extensions::ARB::texture_view::string() << "is not supported.");
|
|
|
|
|
#else
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_view>() &&
|
|
|
|
|
!Context::current().isExtensionSupported<Extensions::OES::texture_view>())
|
|
|
|
|
CORRADE_SKIP("Neither" << Extensions::EXT::texture_view::string() << "nor" << Extensions::OES::texture_view::string() << "is supported.");
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
Texture2D texture;
|
|
|
|
|
texture.setStorage(5, TextureFormat::RGBA8, {128, 32});
|
|
|
|
|
|
|
|
|
|
auto view = Texture2DArray::view(texture, TextureFormat::RGBA8, 2, 3);
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
CORRADE_COMPARE(view.imageSize(0), (Vector3i{32, 8, 1}));
|
|
|
|
|
CORRADE_COMPARE(view.imageSize(1), (Vector3i{16, 4, 1}));
|
|
|
|
|
CORRADE_COMPARE(view.imageSize(2), (Vector3i{8, 2, 1}));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TextureArrayGLTest::view2DOnCubeMap() {
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::ARB::texture_view>())
|
|
|
|
|
CORRADE_SKIP(Extensions::ARB::texture_view::string() << "is not supported.");
|
|
|
|
|
#else
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_view>() &&
|
|
|
|
|
!Context::current().isExtensionSupported<Extensions::OES::texture_view>())
|
|
|
|
|
CORRADE_SKIP("Neither" << Extensions::EXT::texture_view::string() << "nor" << Extensions::OES::texture_view::string() << "is supported.");
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
CubeMapTexture texture;
|
|
|
|
|
texture.setStorage(5, TextureFormat::RGBA8, {32, 32});
|
|
|
|
|
|
|
|
|
|
auto view = Texture2DArray::view(texture, TextureFormat::RGBA8, 2, 3, 4, 2);
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
CORRADE_COMPARE(view.imageSize(0), (Vector3i{8, 8, 2}));
|
|
|
|
|
CORRADE_COMPARE(view.imageSize(1), (Vector3i{4, 4, 2}));
|
|
|
|
|
CORRADE_COMPARE(view.imageSize(2), (Vector3i{2, 2, 2}));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TextureArrayGLTest::view2DOnCubeMapArray() {
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::ARB::texture_cube_map_array>())
|
|
|
|
|
CORRADE_SKIP(Extensions::ARB::texture_cube_map_array::string() << "is not supported.");
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::ARB::texture_view>())
|
|
|
|
|
CORRADE_SKIP(Extensions::ARB::texture_view::string() << "is not supported.");
|
|
|
|
|
#else
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_cube_map_array>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_cube_map_array::string() << "is not supported.");
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_view>() &&
|
|
|
|
|
!Context::current().isExtensionSupported<Extensions::OES::texture_view>())
|
|
|
|
|
CORRADE_SKIP("Neither" << Extensions::EXT::texture_view::string() << "nor" << Extensions::OES::texture_view::string() << "is supported.");
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
CubeMapTextureArray texture;
|
|
|
|
|
texture.setStorage(5, TextureFormat::RGBA8, {32, 32, 12});
|
|
|
|
|
|
|
|
|
|
auto view = Texture2DArray::view(texture, TextureFormat::RGBA8, 2, 3, 9, 3);
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
CORRADE_COMPARE(view.imageSize(0), (Vector3i{8, 8, 3}));
|
|
|
|
|
CORRADE_COMPARE(view.imageSize(1), (Vector3i{4, 4, 3}));
|
|
|
|
|
CORRADE_COMPARE(view.imageSize(2), (Vector3i{2, 2, 3}));
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
void TextureArrayGLTest::image1D() {
|
|
|
|
|
setTestCaseDescription(PixelStorage1DData[testCaseInstanceId()].name);
|
|
|
|
|
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_array>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_array::string() << "is not supported.");
|
|
|
|
|
|
|
|
|
|
Texture1DArray texture;
|
|
|
|
|
texture.setImage(0, TextureFormat::RGBA8, ImageView2D{
|
|
|
|
|
PixelStorage1DData[testCaseInstanceId()].storage,
|
|
|
|
|
PixelFormat::RGBA, PixelType::UnsignedByte, Vector2i(2), PixelStorage1DData[testCaseInstanceId()].dataSparse});
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
Image2D image = texture.image(0, {PixelStorage1DData[testCaseInstanceId()].storage,
|
|
|
|
|
PixelFormat::RGBA, PixelType::UnsignedByte});
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
CORRADE_COMPARE(image.flags(), ImageFlag2D::Array);
|
|
|
|
|
CORRADE_COMPARE(image.size(), Vector2i(2));
|
|
|
|
|
CORRADE_COMPARE_AS(Containers::arrayCast<UnsignedByte>(image.data()).exceptPrefix(PixelStorage1DData[testCaseInstanceId()].offset),
|
|
|
|
|
PixelStorage1DData[testCaseInstanceId()].data,
|
|
|
|
|
TestSuite::Compare::Container);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TextureArrayGLTest::image1DBuffer() {
|
|
|
|
|
setTestCaseDescription(PixelStorage1DData[testCaseInstanceId()].name);
|
|
|
|
|
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_array>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_array::string() << "is not supported.");
|
|
|
|
|
|
|
|
|
|
Texture1DArray texture;
|
|
|
|
|
texture.setImage(0, TextureFormat::RGBA8, BufferImage2D{
|
|
|
|
|
PixelStorage1DData[testCaseInstanceId()].storage,
|
|
|
|
|
PixelFormat::RGBA, PixelType::UnsignedByte, Vector2i(2), PixelStorage1DData[testCaseInstanceId()].dataSparse,
|
|
|
|
|
BufferUsage::StaticDraw});
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
BufferImage2D image = texture.image(0,
|
|
|
|
|
{PixelStorage1DData[testCaseInstanceId()].storage,
|
|
|
|
|
PixelFormat::RGBA, PixelType::UnsignedByte}, BufferUsage::StaticRead);
|
|
|
|
|
auto imageData = image.buffer().data();
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
CORRADE_COMPARE(image.size(), Vector2i(2));
|
|
|
|
|
CORRADE_COMPARE_AS(Containers::arrayCast<UnsignedByte>(imageData).exceptPrefix(PixelStorage1DData[testCaseInstanceId()].offset),
|
|
|
|
|
PixelStorage1DData[testCaseInstanceId()].data,
|
|
|
|
|
TestSuite::Compare::Container);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TextureArrayGLTest::image1DQueryView() {
|
|
|
|
|
setTestCaseDescription(PixelStorage1DData[testCaseInstanceId()].name);
|
|
|
|
|
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_array>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_array::string() << "is not supported.");
|
|
|
|
|
|
|
|
|
|
Texture1DArray texture;
|
|
|
|
|
texture.setImage(0, TextureFormat::RGBA8, ImageView2D{
|
|
|
|
|
PixelStorage1DData[testCaseInstanceId()].storage,
|
|
|
|
|
PixelFormat::RGBA, PixelType::UnsignedByte, Vector2i(2), PixelStorage1DData[testCaseInstanceId()].dataSparse});
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
Containers::Array<char> data{PixelStorage1DData[testCaseInstanceId()].offset + 2*2*4};
|
|
|
|
|
MutableImageView2D image{PixelStorage1DData[testCaseInstanceId()].storage,
|
|
|
|
|
PixelFormat::RGBA, PixelType::UnsignedByte, Vector2i{2}, data, ImageFlag2D::Array};
|
|
|
|
|
texture.image(0, image);
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
/* Doesn't matter what flags are set, they stay untouched */
|
|
|
|
|
CORRADE_COMPARE(image.flags(), ImageFlag2D::Array);
|
|
|
|
|
CORRADE_COMPARE(image.size(), Vector2i(2));
|
|
|
|
|
CORRADE_COMPARE_AS(Containers::arrayCast<UnsignedByte>(image.data()).exceptPrefix(PixelStorage1DData[testCaseInstanceId()].offset),
|
|
|
|
|
PixelStorage1DData[testCaseInstanceId()].data,
|
|
|
|
|
TestSuite::Compare::Container);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
constexpr UnsignedByte Zero1D[4*4*4] = {};
|
|
|
|
|
constexpr UnsignedByte SubData1DComplete[] = {
|
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
|
0, 0, 0, 0, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0, 0, 0, 0,
|
|
|
|
|
0, 0, 0, 0, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0, 0, 0, 0,
|
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
void TextureArrayGLTest::subImage1D() {
|
|
|
|
|
setTestCaseDescription(PixelStorage1DData[testCaseInstanceId()].name);
|
|
|
|
|
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_array>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_array::string() << "is not supported.");
|
|
|
|
|
|
|
|
|
|
Texture1DArray texture;
|
|
|
|
|
texture.setImage(0, TextureFormat::RGBA8,
|
Pixel storage support, part 2: renamed ColorFormat to PixelFormat etc.
Yeah, sorry, I know, the enums are renamed for second or third time in a
row, first they were Image::Format, then ImageFormat, then ColorFormat
and now PixelFormat. But this time it's final and last time they are
renamed and now everything is finally consistent:
* ColorFormat::DepthComponent -- depth is not a color, thus
PixelFormat::DepthComponent makes a lot more sense.
* There will be PixelStorage classes, which will be stored in images
alonside PixelFormat/PixelType enums, making everything nicely
aligned.
* The GL documentation about glTexImage2D() etc. denotes the <format>
and <type> parameters as format and type of *pixel* data, so now we
are _finally_ consistent with the official naming.
I wonder why did I not choose PixelFormat originally. Anyway, the old
<Magnum/ColorFormat.h> header, ColorFormat, ColorType and
CompressedColorFormat types are now aliases to the new ones, are marked
as deprecated and will be removed in some future release (as always, I'm
waiting at least six months before removing the deprecated
functionality).
11 years ago
|
|
|
ImageView2D(PixelFormat::RGBA, PixelType::UnsignedByte, Vector2i(4), Zero1D));
|
|
|
|
|
texture.setSubImage(0, Vector2i(1), ImageView2D{
|
|
|
|
|
PixelStorage1DData[testCaseInstanceId()].storage,
|
|
|
|
|
PixelFormat::RGBA, PixelType::UnsignedByte, Vector2i(2), PixelStorage1DData[testCaseInstanceId()].dataSparse});
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
Pixel storage support, part 2: renamed ColorFormat to PixelFormat etc.
Yeah, sorry, I know, the enums are renamed for second or third time in a
row, first they were Image::Format, then ImageFormat, then ColorFormat
and now PixelFormat. But this time it's final and last time they are
renamed and now everything is finally consistent:
* ColorFormat::DepthComponent -- depth is not a color, thus
PixelFormat::DepthComponent makes a lot more sense.
* There will be PixelStorage classes, which will be stored in images
alonside PixelFormat/PixelType enums, making everything nicely
aligned.
* The GL documentation about glTexImage2D() etc. denotes the <format>
and <type> parameters as format and type of *pixel* data, so now we
are _finally_ consistent with the official naming.
I wonder why did I not choose PixelFormat originally. Anyway, the old
<Magnum/ColorFormat.h> header, ColorFormat, ColorType and
CompressedColorFormat types are now aliases to the new ones, are marked
as deprecated and will be removed in some future release (as always, I'm
waiting at least six months before removing the deprecated
functionality).
11 years ago
|
|
|
Image2D image = texture.image(0, {PixelFormat::RGBA, PixelType::UnsignedByte});
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
CORRADE_COMPARE(image.size(), Vector2i(4));
|
|
|
|
|
CORRADE_COMPARE_AS(Containers::arrayCast<UnsignedByte>(image.data()),
|
|
|
|
|
Containers::arrayView(SubData1DComplete),
|
|
|
|
|
TestSuite::Compare::Container);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TextureArrayGLTest::subImage1DBuffer() {
|
|
|
|
|
setTestCaseDescription(PixelStorage1DData[testCaseInstanceId()].name);
|
|
|
|
|
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_array>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_array::string() << "is not supported.");
|
|
|
|
|
|
|
|
|
|
Texture1DArray texture;
|
|
|
|
|
texture.setImage(0, TextureFormat::RGBA8,
|
Pixel storage support, part 2: renamed ColorFormat to PixelFormat etc.
Yeah, sorry, I know, the enums are renamed for second or third time in a
row, first they were Image::Format, then ImageFormat, then ColorFormat
and now PixelFormat. But this time it's final and last time they are
renamed and now everything is finally consistent:
* ColorFormat::DepthComponent -- depth is not a color, thus
PixelFormat::DepthComponent makes a lot more sense.
* There will be PixelStorage classes, which will be stored in images
alonside PixelFormat/PixelType enums, making everything nicely
aligned.
* The GL documentation about glTexImage2D() etc. denotes the <format>
and <type> parameters as format and type of *pixel* data, so now we
are _finally_ consistent with the official naming.
I wonder why did I not choose PixelFormat originally. Anyway, the old
<Magnum/ColorFormat.h> header, ColorFormat, ColorType and
CompressedColorFormat types are now aliases to the new ones, are marked
as deprecated and will be removed in some future release (as always, I'm
waiting at least six months before removing the deprecated
functionality).
11 years ago
|
|
|
ImageView2D(PixelFormat::RGBA, PixelType::UnsignedByte, Vector2i(4), Zero1D));
|
|
|
|
|
texture.setSubImage(0, Vector2i(1), BufferImage2D{
|
|
|
|
|
PixelStorage1DData[testCaseInstanceId()].storage,
|
|
|
|
|
PixelFormat::RGBA, PixelType::UnsignedByte, Vector2i(2),
|
|
|
|
|
PixelStorage1DData[testCaseInstanceId()].dataSparse,
|
|
|
|
|
BufferUsage::StaticDraw});
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
Pixel storage support, part 2: renamed ColorFormat to PixelFormat etc.
Yeah, sorry, I know, the enums are renamed for second or third time in a
row, first they were Image::Format, then ImageFormat, then ColorFormat
and now PixelFormat. But this time it's final and last time they are
renamed and now everything is finally consistent:
* ColorFormat::DepthComponent -- depth is not a color, thus
PixelFormat::DepthComponent makes a lot more sense.
* There will be PixelStorage classes, which will be stored in images
alonside PixelFormat/PixelType enums, making everything nicely
aligned.
* The GL documentation about glTexImage2D() etc. denotes the <format>
and <type> parameters as format and type of *pixel* data, so now we
are _finally_ consistent with the official naming.
I wonder why did I not choose PixelFormat originally. Anyway, the old
<Magnum/ColorFormat.h> header, ColorFormat, ColorType and
CompressedColorFormat types are now aliases to the new ones, are marked
as deprecated and will be removed in some future release (as always, I'm
waiting at least six months before removing the deprecated
functionality).
11 years ago
|
|
|
BufferImage2D image = texture.image(0, {PixelFormat::RGBA, PixelType::UnsignedByte}, BufferUsage::StaticRead);
|
|
|
|
|
auto imageData = image.buffer().data();
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
CORRADE_COMPARE(image.size(), Vector2i(4));
|
|
|
|
|
CORRADE_COMPARE_AS(Containers::arrayCast<UnsignedByte>(imageData),
|
|
|
|
|
Containers::arrayView(SubData1DComplete),
|
|
|
|
|
TestSuite::Compare::Container);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TextureArrayGLTest::subImage1DQuery() {
|
|
|
|
|
setTestCaseDescription(PixelStorage1DData[testCaseInstanceId()].name);
|
|
|
|
|
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_array>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_array::string() << "is not supported.");
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::ARB::get_texture_sub_image>())
|
|
|
|
|
CORRADE_SKIP(Extensions::ARB::get_texture_sub_image::string() << "is not supported.");
|
|
|
|
|
|
|
|
|
|
Texture1DArray texture;
|
|
|
|
|
texture.setStorage(1, TextureFormat::RGBA8, Vector2i{4})
|
Pixel storage support, part 2: renamed ColorFormat to PixelFormat etc.
Yeah, sorry, I know, the enums are renamed for second or third time in a
row, first they were Image::Format, then ImageFormat, then ColorFormat
and now PixelFormat. But this time it's final and last time they are
renamed and now everything is finally consistent:
* ColorFormat::DepthComponent -- depth is not a color, thus
PixelFormat::DepthComponent makes a lot more sense.
* There will be PixelStorage classes, which will be stored in images
alonside PixelFormat/PixelType enums, making everything nicely
aligned.
* The GL documentation about glTexImage2D() etc. denotes the <format>
and <type> parameters as format and type of *pixel* data, so now we
are _finally_ consistent with the official naming.
I wonder why did I not choose PixelFormat originally. Anyway, the old
<Magnum/ColorFormat.h> header, ColorFormat, ColorType and
CompressedColorFormat types are now aliases to the new ones, are marked
as deprecated and will be removed in some future release (as always, I'm
waiting at least six months before removing the deprecated
functionality).
11 years ago
|
|
|
.setSubImage(0, {}, ImageView2D{PixelFormat::RGBA, PixelType::UnsignedByte, Vector2i{4}, SubData1DComplete});
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
Image2D image = texture.subImage(0, Range2Di::fromSize(Vector2i{1}, Vector2i{2}),
|
|
|
|
|
{PixelStorage1DData[testCaseInstanceId()].storage,
|
|
|
|
|
PixelFormat::RGBA, PixelType::UnsignedByte});
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
CORRADE_COMPARE(image.flags(), ImageFlag2D::Array);
|
|
|
|
|
CORRADE_COMPARE(image.size(), Vector2i{2});
|
|
|
|
|
CORRADE_COMPARE_AS(Containers::arrayCast<UnsignedByte>(image.data()).exceptPrefix(PixelStorage1DData[testCaseInstanceId()].offset),
|
|
|
|
|
PixelStorage1DData[testCaseInstanceId()].data,
|
|
|
|
|
TestSuite::Compare::Container);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TextureArrayGLTest::subImage1DQueryView() {
|
|
|
|
|
setTestCaseDescription(PixelStorage1DData[testCaseInstanceId()].name);
|
|
|
|
|
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_array>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_array::string() << "is not supported.");
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::ARB::get_texture_sub_image>())
|
|
|
|
|
CORRADE_SKIP(Extensions::ARB::get_texture_sub_image::string() << "is not supported.");
|
|
|
|
|
|
|
|
|
|
Texture1DArray texture;
|
|
|
|
|
texture.setStorage(1, TextureFormat::RGBA8, Vector2i{4})
|
|
|
|
|
.setSubImage(0, {}, ImageView2D{PixelFormat::RGBA, PixelType::UnsignedByte, Vector2i{4}, SubData1DComplete});
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
Containers::Array<char> data{PixelStorage1DData[testCaseInstanceId()].offset + 2*2*4};
|
|
|
|
|
MutableImageView2D image{PixelStorage1DData[testCaseInstanceId()].storage,
|
|
|
|
|
PixelFormat::RGBA, PixelType::UnsignedByte, Vector2i{2}, data, ImageFlag2D::Array};
|
|
|
|
|
texture.subImage(0, Range2Di::fromSize(Vector2i{1}, Vector2i{2}), image);
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
/* Doesn't matter what flags are set, they stay untouched */
|
|
|
|
|
CORRADE_COMPARE(image.flags(), ImageFlag2D::Array);
|
|
|
|
|
CORRADE_COMPARE(image.size(), Vector2i{2});
|
|
|
|
|
CORRADE_COMPARE_AS(Containers::arrayCast<UnsignedByte>(image.data()).exceptPrefix(PixelStorage1DData[testCaseInstanceId()].offset),
|
|
|
|
|
PixelStorage1DData[testCaseInstanceId()].data,
|
|
|
|
|
TestSuite::Compare::Container);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TextureArrayGLTest::subImage1DQueryBuffer() {
|
|
|
|
|
setTestCaseDescription(PixelStorage1DData[testCaseInstanceId()].name);
|
|
|
|
|
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_array>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_array::string() << "is not supported.");
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::ARB::get_texture_sub_image>())
|
|
|
|
|
CORRADE_SKIP(Extensions::ARB::get_texture_sub_image::string() << "is not supported.");
|
|
|
|
|
|
|
|
|
|
Texture1DArray texture;
|
|
|
|
|
texture.setStorage(1, TextureFormat::RGBA8, Vector2i{4})
|
Pixel storage support, part 2: renamed ColorFormat to PixelFormat etc.
Yeah, sorry, I know, the enums are renamed for second or third time in a
row, first they were Image::Format, then ImageFormat, then ColorFormat
and now PixelFormat. But this time it's final and last time they are
renamed and now everything is finally consistent:
* ColorFormat::DepthComponent -- depth is not a color, thus
PixelFormat::DepthComponent makes a lot more sense.
* There will be PixelStorage classes, which will be stored in images
alonside PixelFormat/PixelType enums, making everything nicely
aligned.
* The GL documentation about glTexImage2D() etc. denotes the <format>
and <type> parameters as format and type of *pixel* data, so now we
are _finally_ consistent with the official naming.
I wonder why did I not choose PixelFormat originally. Anyway, the old
<Magnum/ColorFormat.h> header, ColorFormat, ColorType and
CompressedColorFormat types are now aliases to the new ones, are marked
as deprecated and will be removed in some future release (as always, I'm
waiting at least six months before removing the deprecated
functionality).
11 years ago
|
|
|
.setSubImage(0, {}, ImageView2D{PixelFormat::RGBA, PixelType::UnsignedByte, Vector2i{4}, SubData1DComplete});
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
BufferImage2D image = texture.subImage(0, Range2Di::fromSize(Vector2i{1}, Vector2i{2}),
|
|
|
|
|
{PixelStorage1DData[testCaseInstanceId()].storage,
|
|
|
|
|
PixelFormat::RGBA, PixelType::UnsignedByte}, BufferUsage::StaticRead);
|
|
|
|
|
auto imageData = image.buffer().data();
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
CORRADE_COMPARE(image.size(), Vector2i{2});
|
|
|
|
|
|
|
|
|
|
/* Was broken on NV since 370.xx (May 2017), fixed in 390.25 (Mar 2018) */
|
|
|
|
|
CORRADE_COMPARE_AS(Containers::arrayCast<UnsignedByte>(imageData).exceptPrefix(PixelStorage1DData[testCaseInstanceId()].offset),
|
|
|
|
|
PixelStorage1DData[testCaseInstanceId()].data,
|
|
|
|
|
TestSuite::Compare::Container);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TextureArrayGLTest::compressedImage1D() {
|
|
|
|
|
CORRADE_SKIP("No 1D texture compression format exists.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TextureArrayGLTest::compressedImage1DBuffer() {
|
|
|
|
|
CORRADE_SKIP("No 1D texture compression format exists.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TextureArrayGLTest::compressedImage1DQueryView() {
|
|
|
|
|
CORRADE_SKIP("No 1D texture compression format exists.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TextureArrayGLTest::compressedSubImage1D() {
|
|
|
|
|
CORRADE_SKIP("No 1D texture compression format exists.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TextureArrayGLTest::compressedSubImage1DBuffer() {
|
|
|
|
|
CORRADE_SKIP("No 1D texture compression format exists.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TextureArrayGLTest::compressedSubImage1DQuery() {
|
|
|
|
|
CORRADE_SKIP("No 1D texture compression format exists.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TextureArrayGLTest::compressedSubImage1DQueryView() {
|
|
|
|
|
CORRADE_SKIP("No 1D texture compression format exists.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TextureArrayGLTest::compressedSubImage1DQueryBuffer() {
|
|
|
|
|
CORRADE_SKIP("No 1D texture compression format exists.");
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
void TextureArrayGLTest::image2D() {
|
|
|
|
|
setTestCaseDescription(PixelStorage2DData[testCaseInstanceId()].name);
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_array>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_array::string() << "is not supported.");
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
Texture2DArray texture;
|
|
|
|
|
texture.setImage(0, TextureFormat::RGBA8, ImageView3D{
|
|
|
|
|
PixelStorage2DData[testCaseInstanceId()].storage,
|
|
|
|
|
PixelFormat::RGBA, PixelType::UnsignedByte, Vector3i(2),
|
|
|
|
|
PixelStorage2DData[testCaseInstanceId()].dataSparse});
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
/** @todo How to test this on ES? */
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
Image3D image = texture.image(0, {PixelStorage2DData[testCaseInstanceId()].storage,
|
|
|
|
|
PixelFormat::RGBA, PixelType::UnsignedByte});
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
CORRADE_COMPARE(image.flags(), ImageFlag3D::Array);
|
|
|
|
|
CORRADE_COMPARE(image.size(), Vector3i(2));
|
|
|
|
|
CORRADE_COMPARE_AS(Containers::arrayCast<UnsignedByte>(image.data()).exceptPrefix(PixelStorage2DData[testCaseInstanceId()].offset),
|
|
|
|
|
PixelStorage2DData[testCaseInstanceId()].data,
|
|
|
|
|
TestSuite::Compare::Container);
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TextureArrayGLTest::image2DBuffer() {
|
|
|
|
|
setTestCaseDescription(PixelStorage2DData[testCaseInstanceId()].name);
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_array>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_array::string() << "is not supported.");
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
Texture2DArray texture;
|
|
|
|
|
texture.setImage(0, TextureFormat::RGBA8, BufferImage3D{
|
|
|
|
|
PixelStorage2DData[testCaseInstanceId()].storage,
|
|
|
|
|
PixelFormat::RGBA, PixelType::UnsignedByte, Vector3i(2),
|
|
|
|
|
PixelStorage2DData[testCaseInstanceId()].dataSparse,
|
|
|
|
|
BufferUsage::StaticDraw});
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
/** @todo How to test this on ES? */
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
BufferImage3D image = texture.image(0, {PixelStorage2DData[testCaseInstanceId()].storage,
|
|
|
|
|
PixelFormat::RGBA, PixelType::UnsignedByte}, BufferUsage::StaticRead);
|
|
|
|
|
auto imageData = image.buffer().data();
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
CORRADE_COMPARE(image.size(), Vector3i(2));
|
|
|
|
|
CORRADE_COMPARE_AS(Containers::arrayCast<UnsignedByte>(imageData).exceptPrefix(PixelStorage2DData[testCaseInstanceId()].offset),
|
|
|
|
|
PixelStorage2DData[testCaseInstanceId()].data,
|
|
|
|
|
TestSuite::Compare::Container);
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
void TextureArrayGLTest::image2DQueryView() {
|
|
|
|
|
setTestCaseDescription(PixelStorage2DData[testCaseInstanceId()].name);
|
|
|
|
|
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_array>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_array::string() << "is not supported.");
|
|
|
|
|
|
|
|
|
|
Texture2DArray texture;
|
|
|
|
|
texture.setImage(0, TextureFormat::RGBA8, ImageView3D{
|
|
|
|
|
PixelStorage2DData[testCaseInstanceId()].storage,
|
|
|
|
|
PixelFormat::RGBA, PixelType::UnsignedByte, Vector3i(2),
|
|
|
|
|
PixelStorage2DData[testCaseInstanceId()].dataSparse});
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
Containers::Array<char> data{PixelStorage2DData[testCaseInstanceId()].offset + 2*2*2*4};
|
|
|
|
|
MutableImageView3D image{PixelStorage2DData[testCaseInstanceId()].storage,
|
|
|
|
|
PixelFormat::RGBA, PixelType::UnsignedByte, Vector3i{2}, data};
|
|
|
|
|
texture.image(0, image);
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
CORRADE_COMPARE(image.size(), Vector3i(2));
|
|
|
|
|
CORRADE_COMPARE_AS(Containers::arrayCast<UnsignedByte>(image.data()).exceptPrefix(PixelStorage2DData[testCaseInstanceId()].offset),
|
|
|
|
|
PixelStorage2DData[testCaseInstanceId()].data,
|
|
|
|
|
TestSuite::Compare::Container);
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
constexpr UnsignedByte Zero2D[4*4*4*4]{};
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
constexpr UnsignedByte SubData2DComplete[]{
|
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
|
|
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
|
0, 0, 0, 0, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0, 0, 0, 0,
|
|
|
|
|
0, 0, 0, 0, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0, 0, 0, 0,
|
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
|
|
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
|
0, 0, 0, 0, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0, 0, 0, 0,
|
|
|
|
|
0, 0, 0, 0, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0, 0, 0, 0,
|
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
|
|
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
|
|
|
|
|
};
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
void TextureArrayGLTest::subImage2D() {
|
|
|
|
|
setTestCaseDescription(PixelStorage2DData[testCaseInstanceId()].name);
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_array>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_array::string() << "is not supported.");
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
Texture2DArray texture;
|
|
|
|
|
texture.setImage(0, TextureFormat::RGBA8,
|
Pixel storage support, part 2: renamed ColorFormat to PixelFormat etc.
Yeah, sorry, I know, the enums are renamed for second or third time in a
row, first they were Image::Format, then ImageFormat, then ColorFormat
and now PixelFormat. But this time it's final and last time they are
renamed and now everything is finally consistent:
* ColorFormat::DepthComponent -- depth is not a color, thus
PixelFormat::DepthComponent makes a lot more sense.
* There will be PixelStorage classes, which will be stored in images
alonside PixelFormat/PixelType enums, making everything nicely
aligned.
* The GL documentation about glTexImage2D() etc. denotes the <format>
and <type> parameters as format and type of *pixel* data, so now we
are _finally_ consistent with the official naming.
I wonder why did I not choose PixelFormat originally. Anyway, the old
<Magnum/ColorFormat.h> header, ColorFormat, ColorType and
CompressedColorFormat types are now aliases to the new ones, are marked
as deprecated and will be removed in some future release (as always, I'm
waiting at least six months before removing the deprecated
functionality).
11 years ago
|
|
|
ImageView3D(PixelFormat::RGBA, PixelType::UnsignedByte, Vector3i(4), Zero2D));
|
|
|
|
|
texture.setSubImage(0, Vector3i(1), ImageView3D{
|
|
|
|
|
PixelStorage2DData[testCaseInstanceId()].storage,
|
|
|
|
|
PixelFormat::RGBA, PixelType::UnsignedByte, Vector3i(2),
|
|
|
|
|
PixelStorage2DData[testCaseInstanceId()].dataSparse});
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
/** @todo How to test this on ES? */
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
Pixel storage support, part 2: renamed ColorFormat to PixelFormat etc.
Yeah, sorry, I know, the enums are renamed for second or third time in a
row, first they were Image::Format, then ImageFormat, then ColorFormat
and now PixelFormat. But this time it's final and last time they are
renamed and now everything is finally consistent:
* ColorFormat::DepthComponent -- depth is not a color, thus
PixelFormat::DepthComponent makes a lot more sense.
* There will be PixelStorage classes, which will be stored in images
alonside PixelFormat/PixelType enums, making everything nicely
aligned.
* The GL documentation about glTexImage2D() etc. denotes the <format>
and <type> parameters as format and type of *pixel* data, so now we
are _finally_ consistent with the official naming.
I wonder why did I not choose PixelFormat originally. Anyway, the old
<Magnum/ColorFormat.h> header, ColorFormat, ColorType and
CompressedColorFormat types are now aliases to the new ones, are marked
as deprecated and will be removed in some future release (as always, I'm
waiting at least six months before removing the deprecated
functionality).
11 years ago
|
|
|
Image3D image = texture.image(0, {PixelFormat::RGBA, PixelType::UnsignedByte});
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
CORRADE_COMPARE(image.size(), Vector3i(4));
|
|
|
|
|
CORRADE_COMPARE_AS(Containers::arrayCast<UnsignedByte>(image.data()),
|
|
|
|
|
Containers::arrayView(SubData2DComplete),
|
|
|
|
|
TestSuite::Compare::Container);
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TextureArrayGLTest::subImage2DBuffer() {
|
|
|
|
|
setTestCaseDescription(PixelStorage2DData[testCaseInstanceId()].name);
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_array>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_array::string() << "is not supported.");
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
Texture2DArray texture;
|
|
|
|
|
texture.setImage(0, TextureFormat::RGBA8,
|
|
|
|
|
ImageView3D(PixelFormat::RGBA, PixelType::UnsignedByte, Vector3i(4), Zero2D));
|
|
|
|
|
texture.setSubImage(0, Vector3i(1), BufferImage3D{
|
|
|
|
|
PixelStorage2DData[testCaseInstanceId()].storage,
|
|
|
|
|
PixelFormat::RGBA, PixelType::UnsignedByte, Vector3i(2),
|
|
|
|
|
PixelStorage2DData[testCaseInstanceId()].dataSparse,
|
|
|
|
|
BufferUsage::StaticDraw});
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
/** @todo How to test this on ES? */
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
BufferImage3D image = texture.image(0, {PixelFormat::RGBA, PixelType::UnsignedByte}, BufferUsage::StaticRead);
|
|
|
|
|
const auto imageData = image.buffer().data();
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
CORRADE_COMPARE(image.size(), Vector3i(4));
|
|
|
|
|
CORRADE_COMPARE_AS(Containers::arrayCast<UnsignedByte>(imageData),
|
|
|
|
|
Containers::arrayView(SubData2DComplete),
|
|
|
|
|
TestSuite::Compare::Container);
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
void TextureArrayGLTest::subImage2DQuery() {
|
|
|
|
|
setTestCaseDescription(PixelStorage2DData[testCaseInstanceId()].name);
|
|
|
|
|
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_array>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_array::string() << "is not supported.");
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::ARB::get_texture_sub_image>())
|
|
|
|
|
CORRADE_SKIP(Extensions::ARB::get_texture_sub_image::string() << "is not supported.");
|
|
|
|
|
|
|
|
|
|
Texture2DArray texture;
|
|
|
|
|
texture.setStorage(1, TextureFormat::RGBA8, Vector3i{4})
|
|
|
|
|
.setSubImage(0, {}, ImageView3D{PixelFormat::RGBA, PixelType::UnsignedByte, Vector3i{4}, SubData2DComplete});
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
Image3D image = texture.subImage(0, Range3Di::fromSize(Vector3i{1}, Vector3i{2}),
|
|
|
|
|
{PixelStorage2DData[testCaseInstanceId()].storage,
|
|
|
|
|
PixelFormat::RGBA, PixelType::UnsignedByte});
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
CORRADE_COMPARE(image.flags(), ImageFlag3D::Array);
|
|
|
|
|
CORRADE_COMPARE(image.size(), Vector3i{2});
|
|
|
|
|
CORRADE_COMPARE_AS(Containers::arrayCast<UnsignedByte>(image.data()).exceptPrefix(PixelStorage2DData[testCaseInstanceId()].offset),
|
|
|
|
|
PixelStorage2DData[testCaseInstanceId()].data,
|
|
|
|
|
TestSuite::Compare::Container);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TextureArrayGLTest::subImage2DQueryView() {
|
|
|
|
|
setTestCaseDescription(PixelStorage2DData[testCaseInstanceId()].name);
|
|
|
|
|
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_array>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_array::string() << "is not supported.");
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::ARB::get_texture_sub_image>())
|
|
|
|
|
CORRADE_SKIP(Extensions::ARB::get_texture_sub_image::string() << "is not supported.");
|
|
|
|
|
|
|
|
|
|
Texture2DArray texture;
|
|
|
|
|
texture.setStorage(1, TextureFormat::RGBA8, Vector3i{4})
|
|
|
|
|
.setSubImage(0, {}, ImageView3D{PixelFormat::RGBA, PixelType::UnsignedByte, Vector3i{4}, SubData2DComplete});
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
Containers::Array<char> data{PixelStorage2DData[testCaseInstanceId()].offset + 2*2*2*4};
|
|
|
|
|
MutableImageView3D image{PixelStorage2DData[testCaseInstanceId()].storage,
|
|
|
|
|
PixelFormat::RGBA, PixelType::UnsignedByte, Vector3i{2}, data, ImageFlag3D::Array};
|
|
|
|
|
texture.subImage(0, Range3Di::fromSize(Vector3i{1}, Vector3i{2}), image);
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
/* Doesn't matter what flags are set, they stay untouched */
|
|
|
|
|
CORRADE_COMPARE(image.flags(), ImageFlag3D::Array);
|
|
|
|
|
CORRADE_COMPARE(image.size(), Vector3i{2});
|
|
|
|
|
CORRADE_COMPARE_AS(Containers::arrayCast<UnsignedByte>(image.data()).exceptPrefix(PixelStorage2DData[testCaseInstanceId()].offset),
|
|
|
|
|
PixelStorage2DData[testCaseInstanceId()].data,
|
|
|
|
|
TestSuite::Compare::Container);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TextureArrayGLTest::subImage2DQueryBuffer() {
|
|
|
|
|
setTestCaseDescription(PixelStorage2DData[testCaseInstanceId()].name);
|
|
|
|
|
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_array>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_array::string() << "is not supported.");
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::ARB::get_texture_sub_image>())
|
|
|
|
|
CORRADE_SKIP(Extensions::ARB::get_texture_sub_image::string() << "is not supported.");
|
|
|
|
|
|
|
|
|
|
Texture2DArray texture;
|
|
|
|
|
texture.setStorage(1, TextureFormat::RGBA8, Vector3i{4})
|
|
|
|
|
.setSubImage(0, {}, ImageView3D{PixelFormat::RGBA, PixelType::UnsignedByte, Vector3i{4}, SubData2DComplete});
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
BufferImage3D image = texture.subImage(0, Range3Di::fromSize(Vector3i{1}, Vector3i{2}),
|
|
|
|
|
{PixelStorage2DData[testCaseInstanceId()].storage,
|
|
|
|
|
PixelFormat::RGBA, PixelType::UnsignedByte}, BufferUsage::StaticRead);
|
|
|
|
|
const auto imageData = image.buffer().data();
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
CORRADE_COMPARE(image.size(), Vector3i{2});
|
|
|
|
|
CORRADE_COMPARE_AS(Containers::arrayCast<UnsignedByte>(imageData).exceptPrefix(PixelStorage2DData[testCaseInstanceId()].offset),
|
|
|
|
|
PixelStorage2DData[testCaseInstanceId()].data,
|
|
|
|
|
TestSuite::Compare::Container);
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
void TextureArrayGLTest::compressedImage2D() {
|
|
|
|
|
setTestCaseDescription(CompressedPixelStorage2DData[testCaseInstanceId()].name);
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_array>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_array::string() << "is not supported.");
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_compression_s3tc>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_compression_s3tc::string() << "is not supported.");
|
|
|
|
|
#elif defined(MAGNUM_TARGET_WEBGL)
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::WEBGL::compressed_texture_s3tc>())
|
|
|
|
|
CORRADE_SKIP(Extensions::WEBGL::compressed_texture_s3tc::string() << "is not supported.");
|
|
|
|
|
#else
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::ANGLE::texture_compression_dxt3>())
|
|
|
|
|
CORRADE_SKIP(Extensions::ANGLE::texture_compression_dxt3::string() << "is not supported.");
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
if(CompressedPixelStorage2DData[testCaseInstanceId()].storage != CompressedPixelStorage{} && !Context::current().isExtensionSupported<Extensions::ARB::compressed_texture_pixel_storage>())
|
|
|
|
|
CORRADE_SKIP(Extensions::ARB::compressed_texture_pixel_storage::string() << "is not supported.");
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
Texture2DArray texture;
|
|
|
|
|
texture.setCompressedImage(0, CompressedImageView3D{
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
CompressedPixelStorage2DData[testCaseInstanceId()].storage,
|
|
|
|
|
#endif
|
|
|
|
|
CompressedPixelFormat::RGBAS3tcDxt3, {4, 4, 2},
|
|
|
|
|
CompressedPixelStorage2DData[testCaseInstanceId()].dataSparse});
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
CompressedImage3D image = texture.compressedImage(0, {CompressedPixelStorage2DData[testCaseInstanceId()].storage});
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
CORRADE_COMPARE(image.flags(), ImageFlag3D::Array);
|
|
|
|
|
CORRADE_COMPARE(image.size(), (Vector3i{4, 4, 2}));
|
|
|
|
|
CORRADE_COMPARE_AS(Containers::arrayCast<UnsignedByte>(image.data()).exceptPrefix(CompressedPixelStorage2DData[testCaseInstanceId()].offset),
|
|
|
|
|
CompressedPixelStorage2DData[testCaseInstanceId()].data,
|
|
|
|
|
TestSuite::Compare::Container);
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TextureArrayGLTest::compressedImage2DBuffer() {
|
|
|
|
|
setTestCaseDescription(CompressedPixelStorage2DData[testCaseInstanceId()].name);
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_array>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_array::string() << "is not supported.");
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_compression_s3tc>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_compression_s3tc::string() << "is not supported.");
|
|
|
|
|
#elif defined(MAGNUM_TARGET_WEBGL)
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::WEBGL::compressed_texture_s3tc>())
|
|
|
|
|
CORRADE_SKIP(Extensions::WEBGL::compressed_texture_s3tc::string() << "is not supported.");
|
|
|
|
|
#else
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::ANGLE::texture_compression_dxt3>())
|
|
|
|
|
CORRADE_SKIP(Extensions::ANGLE::texture_compression_dxt3::string() << "is not supported.");
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
if(CompressedPixelStorage2DData[testCaseInstanceId()].storage != CompressedPixelStorage{} && !Context::current().isExtensionSupported<Extensions::ARB::compressed_texture_pixel_storage>())
|
|
|
|
|
CORRADE_SKIP(Extensions::ARB::compressed_texture_pixel_storage::string() << "is not supported.");
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
Texture2DArray texture;
|
|
|
|
|
texture.setCompressedImage(0, CompressedBufferImage3D{
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
CompressedPixelStorage2DData[testCaseInstanceId()].storage,
|
|
|
|
|
#endif
|
|
|
|
|
CompressedPixelFormat::RGBAS3tcDxt3, {4, 4, 2},
|
|
|
|
|
CompressedPixelStorage2DData[testCaseInstanceId()].dataSparse,
|
|
|
|
|
BufferUsage::StaticDraw});
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
CompressedBufferImage3D image = texture.compressedImage(0, {CompressedPixelStorage2DData[testCaseInstanceId()].storage}, BufferUsage::StaticRead);
|
|
|
|
|
const auto imageData = image.buffer().data();
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
CORRADE_COMPARE(image.size(), (Vector3i{4, 4, 2}));
|
|
|
|
|
CORRADE_COMPARE_AS(Containers::arrayCast<UnsignedByte>(imageData).exceptPrefix(CompressedPixelStorage2DData[testCaseInstanceId()].offset),
|
|
|
|
|
CompressedPixelStorage2DData[testCaseInstanceId()].data,
|
|
|
|
|
TestSuite::Compare::Container);
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
void TextureArrayGLTest::compressedImage2DQueryView() {
|
|
|
|
|
setTestCaseDescription(CompressedPixelStorage2DData[testCaseInstanceId()].name);
|
|
|
|
|
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_array>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_array::string() << "is not supported.");
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_compression_s3tc>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_compression_s3tc::string() << "is not supported.");
|
|
|
|
|
|
|
|
|
|
if(CompressedPixelStorage2DData[testCaseInstanceId()].storage != CompressedPixelStorage{} && !Context::current().isExtensionSupported<Extensions::ARB::compressed_texture_pixel_storage>())
|
|
|
|
|
CORRADE_SKIP(Extensions::ARB::compressed_texture_pixel_storage::string() << "is not supported.");
|
|
|
|
|
|
|
|
|
|
Texture2DArray texture;
|
|
|
|
|
texture.setCompressedImage(0, CompressedImageView3D{
|
|
|
|
|
CompressedPixelStorage2DData[testCaseInstanceId()].storage,
|
|
|
|
|
CompressedPixelFormat::RGBAS3tcDxt3, {4, 4, 2},
|
|
|
|
|
CompressedPixelStorage2DData[testCaseInstanceId()].dataSparse});
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
Containers::Array<char> data{CompressedPixelStorage2DData[testCaseInstanceId()].offset + 2*16};
|
|
|
|
|
MutableCompressedImageView3D image{CompressedPixelStorage2DData[testCaseInstanceId()].storage, CompressedPixelFormat::RGBAS3tcDxt3, {4, 4, 2}, data};
|
|
|
|
|
texture.compressedImage(0, image);
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
CORRADE_COMPARE(image.size(), (Vector3i{4, 4, 2}));
|
|
|
|
|
CORRADE_COMPARE_AS(Containers::arrayCast<UnsignedByte>(image.data()).exceptPrefix(CompressedPixelStorage2DData[testCaseInstanceId()].offset),
|
|
|
|
|
CompressedPixelStorage2DData[testCaseInstanceId()].data,
|
|
|
|
|
TestSuite::Compare::Container);
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* Just 12x4x4 zeros compressed using RGBA DXT3 by the driver */
|
|
|
|
|
constexpr UnsignedByte CompressedZero2D[3*4*16]{};
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
/* Combination of CompressedZero2D and CompressedData2D */
|
|
|
|
|
constexpr UnsignedByte CompressedSubData2DComplete[]{
|
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
|
|
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
|
0, 17, 17, 34, 34, 51, 51, 67,
|
|
|
|
|
232, 57, 0, 0, 213, 255, 170, 2,
|
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
|
|
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
|
68, 84, 85, 101, 102, 118, 119, 119,
|
|
|
|
|
239, 123, 8, 66, 213, 255, 170, 2,
|
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
|
|
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0
|
|
|
|
|
};
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
void TextureArrayGLTest::compressedSubImage2D() {
|
|
|
|
|
setTestCaseDescription(CompressedPixelStorage2DData[testCaseInstanceId()].name);
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_array>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_array::string() << "is not supported.");
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_compression_s3tc>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_compression_s3tc::string() << "is not supported.");
|
|
|
|
|
#elif defined(MAGNUM_TARGET_WEBGL)
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::WEBGL::compressed_texture_s3tc>())
|
|
|
|
|
CORRADE_SKIP(Extensions::WEBGL::compressed_texture_s3tc::string() << "is not supported.");
|
|
|
|
|
#else
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::ANGLE::texture_compression_dxt3>())
|
|
|
|
|
CORRADE_SKIP(Extensions::ANGLE::texture_compression_dxt3::string() << "is not supported.");
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
if(CompressedPixelStorage2DData[testCaseInstanceId()].storage != CompressedPixelStorage{} && !Context::current().isExtensionSupported<Extensions::ARB::compressed_texture_pixel_storage>())
|
|
|
|
|
CORRADE_SKIP(Extensions::ARB::compressed_texture_pixel_storage::string() << "is not supported.");
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
Texture2DArray texture;
|
Pixel storage support, part 2: renamed ColorFormat to PixelFormat etc.
Yeah, sorry, I know, the enums are renamed for second or third time in a
row, first they were Image::Format, then ImageFormat, then ColorFormat
and now PixelFormat. But this time it's final and last time they are
renamed and now everything is finally consistent:
* ColorFormat::DepthComponent -- depth is not a color, thus
PixelFormat::DepthComponent makes a lot more sense.
* There will be PixelStorage classes, which will be stored in images
alonside PixelFormat/PixelType enums, making everything nicely
aligned.
* The GL documentation about glTexImage2D() etc. denotes the <format>
and <type> parameters as format and type of *pixel* data, so now we
are _finally_ consistent with the official naming.
I wonder why did I not choose PixelFormat originally. Anyway, the old
<Magnum/ColorFormat.h> header, ColorFormat, ColorType and
CompressedColorFormat types are now aliases to the new ones, are marked
as deprecated and will be removed in some future release (as always, I'm
waiting at least six months before removing the deprecated
functionality).
11 years ago
|
|
|
texture.setCompressedImage(0, CompressedImageView3D{CompressedPixelFormat::RGBAS3tcDxt3,
|
|
|
|
|
Vector3i{12, 4, 4}, CompressedZero2D});
|
|
|
|
|
texture.setCompressedSubImage(0, {4, 0, 1}, CompressedImageView3D{
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
CompressedPixelStorage2DData[testCaseInstanceId()].storage,
|
|
|
|
|
#endif
|
|
|
|
|
CompressedPixelFormat::RGBAS3tcDxt3, {4, 4, 2},
|
|
|
|
|
CompressedPixelStorage2DData[testCaseInstanceId()].dataSparse});
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
CompressedImage3D image = texture.compressedImage(0, {});
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
CORRADE_COMPARE(image.size(), (Vector3i{12, 4, 4}));
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
CORRADE_EXPECT_FAIL_IF(CompressedPixelStorage2DData[testCaseInstanceId()].storage != CompressedPixelStorage{} && (Context::current().detectedDriver() & Context::DetectedDriver::NVidia),
|
|
|
|
|
"Non-default compressed pixel storage for array textures behaves weirdly on NVidia");
|
|
|
|
|
|
|
|
|
|
CORRADE_COMPARE_AS(Containers::arrayCast<UnsignedByte>(image.data()),
|
|
|
|
|
Containers::arrayView(CompressedSubData2DComplete),
|
|
|
|
|
TestSuite::Compare::Container);
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TextureArrayGLTest::compressedSubImage2DBuffer() {
|
|
|
|
|
setTestCaseDescription(CompressedPixelStorage2DData[testCaseInstanceId()].name);
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_array>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_array::string() << "is not supported.");
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_compression_s3tc>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_compression_s3tc::string() << "is not supported.");
|
|
|
|
|
#elif defined(MAGNUM_TARGET_WEBGL)
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::WEBGL::compressed_texture_s3tc>())
|
|
|
|
|
CORRADE_SKIP(Extensions::WEBGL::compressed_texture_s3tc::string() << "is not supported.");
|
|
|
|
|
#else
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::ANGLE::texture_compression_dxt3>())
|
|
|
|
|
CORRADE_SKIP(Extensions::ANGLE::texture_compression_dxt3::string() << "is not supported.");
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
if(CompressedPixelStorage2DData[testCaseInstanceId()].storage != CompressedPixelStorage{} && !Context::current().isExtensionSupported<Extensions::ARB::compressed_texture_pixel_storage>())
|
|
|
|
|
CORRADE_SKIP(Extensions::ARB::compressed_texture_pixel_storage::string() << "is not supported.");
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
Texture2DArray texture;
|
|
|
|
|
texture.setCompressedImage(0, CompressedImageView3D{CompressedPixelFormat::RGBAS3tcDxt3,
|
|
|
|
|
Vector3i{12, 4, 4}, CompressedZero2D});
|
|
|
|
|
texture.setCompressedSubImage(0, {4, 0, 1}, CompressedBufferImage3D{
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
CompressedPixelStorage2DData[testCaseInstanceId()].storage,
|
|
|
|
|
#endif
|
|
|
|
|
CompressedPixelFormat::RGBAS3tcDxt3, {4, 4, 2},
|
|
|
|
|
CompressedPixelStorage2DData[testCaseInstanceId()].dataSparse,
|
|
|
|
|
BufferUsage::StaticDraw});
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
CompressedBufferImage3D image = texture.compressedImage(0, {}, BufferUsage::StaticRead);
|
|
|
|
|
const auto imageData = image.buffer().data();
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
CORRADE_COMPARE(image.size(), (Vector3i{12, 4, 4}));
|
|
|
|
|
CORRADE_COMPARE_AS(Containers::arrayCast<UnsignedByte>(imageData),
|
|
|
|
|
Containers::arrayView(CompressedSubData2DComplete),
|
|
|
|
|
TestSuite::Compare::Container);
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
void TextureArrayGLTest::compressedSubImage2DQuery() {
|
|
|
|
|
setTestCaseDescription(CompressedPixelStorage2DData[testCaseInstanceId()].name);
|
|
|
|
|
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_array>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_array::string() << "is not supported.");
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::ARB::get_texture_sub_image>())
|
|
|
|
|
CORRADE_SKIP(Extensions::ARB::get_texture_sub_image::string() << "is not supported.");
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_compression_s3tc>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_compression_s3tc::string() << "is not supported.");
|
|
|
|
|
if(CompressedPixelStorage2DData[testCaseInstanceId()].storage != CompressedPixelStorage{} && !Context::current().isExtensionSupported<Extensions::ARB::compressed_texture_pixel_storage>())
|
|
|
|
|
CORRADE_SKIP(Extensions::ARB::compressed_texture_pixel_storage::string() << "is not supported.");
|
|
|
|
|
if(CompressedPixelStorage2DData[testCaseInstanceId()].storage == CompressedPixelStorage{} && !Context::current().isExtensionSupported<Extensions::ARB::internalformat_query2>())
|
|
|
|
|
CORRADE_SKIP(Extensions::ARB::internalformat_query2::string() << "is not supported.");
|
|
|
|
|
|
|
|
|
|
Texture2DArray texture;
|
|
|
|
|
texture.setStorage(1, TextureFormat::CompressedRGBAS3tcDxt3, {12, 4, 4})
|
|
|
|
|
.setCompressedSubImage(0, {}, CompressedImageView3D{CompressedPixelFormat::RGBAS3tcDxt3,
|
|
|
|
|
{12, 4, 4}, CompressedSubData2DComplete});
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
CompressedImage3D image = texture.compressedSubImage(0, Range3Di::fromSize({4, 0, 1}, {4, 4, 2}), {CompressedPixelStorage2DData[testCaseInstanceId()].storage});
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
CORRADE_COMPARE(image.flags(), ImageFlag3D::Array);
|
|
|
|
|
CORRADE_COMPARE(image.size(), (Vector3i{4, 4, 2}));
|
|
|
|
|
CORRADE_COMPARE_AS(Containers::arrayCast<UnsignedByte>(image.data()).exceptPrefix(CompressedPixelStorage2DData[testCaseInstanceId()].offset),
|
|
|
|
|
CompressedPixelStorage2DData[testCaseInstanceId()].data,
|
|
|
|
|
TestSuite::Compare::Container);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TextureArrayGLTest::compressedSubImage2DQueryView() {
|
|
|
|
|
setTestCaseDescription(CompressedPixelStorage2DData[testCaseInstanceId()].name);
|
|
|
|
|
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_array>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_array::string() << "is not supported.");
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::ARB::get_texture_sub_image>())
|
|
|
|
|
CORRADE_SKIP(Extensions::ARB::get_texture_sub_image::string() << "is not supported.");
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_compression_s3tc>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_compression_s3tc::string() << "is not supported.");
|
|
|
|
|
if(CompressedPixelStorage2DData[testCaseInstanceId()].storage != CompressedPixelStorage{} && !Context::current().isExtensionSupported<Extensions::ARB::compressed_texture_pixel_storage>())
|
|
|
|
|
CORRADE_SKIP(Extensions::ARB::compressed_texture_pixel_storage::string() << "is not supported.");
|
|
|
|
|
if(CompressedPixelStorage2DData[testCaseInstanceId()].storage == CompressedPixelStorage{} && !Context::current().isExtensionSupported<Extensions::ARB::internalformat_query2>())
|
|
|
|
|
CORRADE_SKIP(Extensions::ARB::internalformat_query2::string() << "is not supported.");
|
|
|
|
|
|
|
|
|
|
Texture2DArray texture;
|
|
|
|
|
texture.setStorage(1, TextureFormat::CompressedRGBAS3tcDxt3, {12, 4, 4})
|
|
|
|
|
.setCompressedSubImage(0, {}, CompressedImageView3D{CompressedPixelFormat::RGBAS3tcDxt3,
|
|
|
|
|
{12, 4, 4}, CompressedSubData2DComplete});
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
Containers::Array<char> data{CompressedPixelStorage2DData[testCaseInstanceId()].offset + 2*16};
|
|
|
|
|
MutableCompressedImageView3D image{CompressedPixelStorage2DData[testCaseInstanceId()].storage, CompressedPixelFormat::RGBAS3tcDxt3, {4, 4, 2}, data, ImageFlag3D::Array};
|
|
|
|
|
texture.compressedSubImage(0, Range3Di::fromSize({4, 0, 1}, {4, 4, 2}), image);
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
/* Doesn't matter what flags are set, they stay untouched */
|
|
|
|
|
CORRADE_COMPARE(image.flags(), ImageFlag3D::Array);
|
|
|
|
|
CORRADE_COMPARE(image.size(), (Vector3i{4, 4, 2}));
|
|
|
|
|
CORRADE_COMPARE_AS(Containers::arrayCast<UnsignedByte>(image.data()).exceptPrefix(CompressedPixelStorage2DData[testCaseInstanceId()].offset),
|
|
|
|
|
CompressedPixelStorage2DData[testCaseInstanceId()].data,
|
|
|
|
|
TestSuite::Compare::Container);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TextureArrayGLTest::compressedSubImage2DQueryBuffer() {
|
|
|
|
|
setTestCaseDescription(CompressedPixelStorage2DData[testCaseInstanceId()].name);
|
|
|
|
|
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_array>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_array::string() << "is not supported.");
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::ARB::get_texture_sub_image>())
|
|
|
|
|
CORRADE_SKIP(Extensions::ARB::get_texture_sub_image::string() << "is not supported.");
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_compression_s3tc>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_compression_s3tc::string() << "is not supported.");
|
|
|
|
|
if(CompressedPixelStorage2DData[testCaseInstanceId()].storage != CompressedPixelStorage{} && !Context::current().isExtensionSupported<Extensions::ARB::compressed_texture_pixel_storage>())
|
|
|
|
|
CORRADE_SKIP(Extensions::ARB::compressed_texture_pixel_storage::string() << "is not supported.");
|
|
|
|
|
if(CompressedPixelStorage2DData[testCaseInstanceId()].storage == CompressedPixelStorage{} && !Context::current().isExtensionSupported<Extensions::ARB::internalformat_query2>())
|
|
|
|
|
CORRADE_SKIP(Extensions::ARB::internalformat_query2::string() << "is not supported.");
|
|
|
|
|
|
|
|
|
|
Texture2DArray texture;
|
|
|
|
|
texture.setStorage(1, TextureFormat::CompressedRGBAS3tcDxt3, {12, 4, 4})
|
|
|
|
|
.setCompressedSubImage(0, {}, CompressedImageView3D{CompressedPixelFormat::RGBAS3tcDxt3,
|
|
|
|
|
{12, 4, 4}, CompressedSubData2DComplete});
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
CompressedBufferImage3D image = texture.compressedSubImage(0, Range3Di::fromSize({4, 0, 1}, {4, 4, 2}), {
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
CompressedPixelStorage2DData[testCaseInstanceId()].storage
|
|
|
|
|
#endif
|
|
|
|
|
}, BufferUsage::StaticRead);
|
|
|
|
|
const auto imageData = image.buffer().data();
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
CORRADE_COMPARE(image.size(), (Vector3i{4, 4, 2}));
|
|
|
|
|
CORRADE_COMPARE_AS(Containers::arrayCast<UnsignedByte>(imageData).exceptPrefix(CompressedPixelStorage2DData[testCaseInstanceId()].offset),
|
|
|
|
|
CompressedPixelStorage2DData[testCaseInstanceId()].data,
|
|
|
|
|
TestSuite::Compare::Container);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TextureArrayGLTest::generateMipmap1D() {
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::ARB::framebuffer_object>())
|
|
|
|
|
CORRADE_SKIP(Extensions::ARB::framebuffer_object::string() << "is not supported.");
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_array>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_array::string() << "is not supported.");
|
|
|
|
|
|
|
|
|
|
Texture1DArray texture;
|
|
|
|
|
texture.setImage(0, TextureFormat::RGBA8,
|
Pixel storage support, part 2: renamed ColorFormat to PixelFormat etc.
Yeah, sorry, I know, the enums are renamed for second or third time in a
row, first they were Image::Format, then ImageFormat, then ColorFormat
and now PixelFormat. But this time it's final and last time they are
renamed and now everything is finally consistent:
* ColorFormat::DepthComponent -- depth is not a color, thus
PixelFormat::DepthComponent makes a lot more sense.
* There will be PixelStorage classes, which will be stored in images
alonside PixelFormat/PixelType enums, making everything nicely
aligned.
* The GL documentation about glTexImage2D() etc. denotes the <format>
and <type> parameters as format and type of *pixel* data, so now we
are _finally_ consistent with the official naming.
I wonder why did I not choose PixelFormat originally. Anyway, the old
<Magnum/ColorFormat.h> header, ColorFormat, ColorType and
CompressedColorFormat types are now aliases to the new ones, are marked
as deprecated and will be removed in some future release (as always, I'm
waiting at least six months before removing the deprecated
functionality).
11 years ago
|
|
|
ImageView2D(PixelFormat::RGBA, PixelType::UnsignedByte, Vector2i(32)));
|
|
|
|
|
|
|
|
|
|
CORRADE_COMPARE(texture.imageSize(0), Vector2i(32));
|
|
|
|
|
CORRADE_COMPARE(texture.imageSize(1), Vector2i( 0));
|
|
|
|
|
|
|
|
|
|
texture.generateMipmap();
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
CORRADE_COMPARE(texture.imageSize(0), Vector2i(32, 32));
|
|
|
|
|
CORRADE_COMPARE(texture.imageSize(1), Vector2i(16, 32));
|
|
|
|
|
CORRADE_COMPARE(texture.imageSize(2), Vector2i( 8, 32));
|
|
|
|
|
CORRADE_COMPARE(texture.imageSize(3), Vector2i( 4, 32));
|
|
|
|
|
CORRADE_COMPARE(texture.imageSize(4), Vector2i( 2, 32));
|
|
|
|
|
CORRADE_COMPARE(texture.imageSize(5), Vector2i( 1, 32));
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
void TextureArrayGLTest::generateMipmap2D() {
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::ARB::framebuffer_object>())
|
|
|
|
|
CORRADE_SKIP(Extensions::ARB::framebuffer_object::string() << "is not supported.");
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_array>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_array::string() << "is not supported.");
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
Texture2DArray texture;
|
|
|
|
|
texture.setImage(0, TextureFormat::RGBA8,
|
Pixel storage support, part 2: renamed ColorFormat to PixelFormat etc.
Yeah, sorry, I know, the enums are renamed for second or third time in a
row, first they were Image::Format, then ImageFormat, then ColorFormat
and now PixelFormat. But this time it's final and last time they are
renamed and now everything is finally consistent:
* ColorFormat::DepthComponent -- depth is not a color, thus
PixelFormat::DepthComponent makes a lot more sense.
* There will be PixelStorage classes, which will be stored in images
alonside PixelFormat/PixelType enums, making everything nicely
aligned.
* The GL documentation about glTexImage2D() etc. denotes the <format>
and <type> parameters as format and type of *pixel* data, so now we
are _finally_ consistent with the official naming.
I wonder why did I not choose PixelFormat originally. Anyway, the old
<Magnum/ColorFormat.h> header, ColorFormat, ColorType and
CompressedColorFormat types are now aliases to the new ones, are marked
as deprecated and will be removed in some future release (as always, I'm
waiting at least six months before removing the deprecated
functionality).
11 years ago
|
|
|
ImageView3D(PixelFormat::RGBA, PixelType::UnsignedByte, Vector3i(32)));
|
|
|
|
|
|
|
|
|
|
/** @todo How to test this on ES? */
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
CORRADE_COMPARE(texture.imageSize(0), Vector3i(32));
|
|
|
|
|
CORRADE_COMPARE(texture.imageSize(1), Vector3i( 0));
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
texture.generateMipmap();
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
CORRADE_COMPARE(texture.imageSize(0), Vector3i(32, 32, 32));
|
|
|
|
|
CORRADE_COMPARE(texture.imageSize(1), Vector3i(16, 16, 32));
|
|
|
|
|
CORRADE_COMPARE(texture.imageSize(2), Vector3i( 8, 8, 32));
|
|
|
|
|
CORRADE_COMPARE(texture.imageSize(3), Vector3i( 4, 4, 32));
|
|
|
|
|
CORRADE_COMPARE(texture.imageSize(4), Vector3i( 2, 2, 32));
|
|
|
|
|
CORRADE_COMPARE(texture.imageSize(5), Vector3i( 1, 1, 32));
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
void TextureArrayGLTest::invalidateImage1D() {
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_array>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_array::string() << "is not supported.");
|
|
|
|
|
|
|
|
|
|
Texture1DArray texture;
|
|
|
|
|
texture.setStorage(2, TextureFormat::RGBA8, Vector2i(32));
|
|
|
|
|
texture.invalidateImage(1);
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
void TextureArrayGLTest::invalidateImage2D() {
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_array>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_array::string() << "is not supported.");
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
Texture2DArray texture;
|
|
|
|
|
texture.setStorage(2, TextureFormat::RGBA8, Vector3i(32));
|
|
|
|
|
texture.invalidateImage(1);
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
void TextureArrayGLTest::invalidateSubImage1D() {
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_array>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_array::string() << "is not supported.");
|
|
|
|
|
|
|
|
|
|
Texture1DArray texture;
|
|
|
|
|
texture.setStorage(2, TextureFormat::RGBA8, Vector2i(32));
|
|
|
|
|
texture.invalidateSubImage(1, Vector2i(2), Vector2i(8));
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
void TextureArrayGLTest::invalidateSubImage2D() {
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_array>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_array::string() << "is not supported.");
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
Texture2DArray texture;
|
|
|
|
|
texture.setStorage(2, TextureFormat::RGBA8, Vector3i(32));
|
|
|
|
|
texture.invalidateSubImage(1, Vector3i(2), Vector3i(8));
|
|
|
|
|
|
|
|
|
|
MAGNUM_VERIFY_NO_GL_ERROR();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}}}}
|
|
|
|
|
|
|
|
|
|
CORRADE_TEST_MAIN(Magnum::GL::Test::TextureArrayGLTest)
|