85a1663eb1
Support for 1D textures on Vulkan, OpenGL, Metal, and D3D. Change-Id: Ie74ec103da9cfcbf83fa78588cf8cfc1bd6e104f Reviewed-by: Laszlo Agocs <laszlo.agocs@qt.io>
24 lines
401 B
CMake
24 lines
401 B
CMake
# Copyright (C) 2022 The Qt Company Ltd.
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
qt_internal_add_manual_test(tex1d
|
|
GUI
|
|
SOURCES
|
|
tex1d.cpp
|
|
PUBLIC_LIBRARIES
|
|
Qt::Gui
|
|
Qt::GuiPrivate
|
|
)
|
|
|
|
set(tex1d_resource_files
|
|
"texture1d.vert.qsb"
|
|
"texture1d.frag.qsb"
|
|
)
|
|
|
|
qt_internal_add_resource(tex1d "tex1d"
|
|
PREFIX
|
|
"/"
|
|
FILES
|
|
${tex1d_resource_files}
|
|
)
|