From 603eac2dfbd14e05a810873c1417aa8dcfa246b4 Mon Sep 17 00:00:00 2001 From: Andrew Knight Date: Mon, 6 Jan 2014 23:07:36 +0200 Subject: d3dcompiler_qt: Place compiler options in the shader file name The compiler service needs to know what options to pass to the compiler, and these options can affect the outcome of the shader blob. Runtime compiled shader output must match this file name in the binary directory. Pre-compiled shader blobs (e.g. those placed in a resource file) are permitted to drop options from the file name if the implementor can ensure the blob is compatible with the target. Defines are not written out as options, but written into the shader source, and therefore affect the cache key. Change-Id: I11e4a43fcf6818ddb29aca5eba3d8647ba4021a1 Reviewed-by: Friedemann Kleint Reviewed-by: Oliver Wolff --- tests/auto/other/d3dcompiler/tst_d3dcompiler.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'tests') diff --git a/tests/auto/other/d3dcompiler/tst_d3dcompiler.cpp b/tests/auto/other/d3dcompiler/tst_d3dcompiler.cpp index f86c965d84..1a34c2076b 100644 --- a/tests/auto/other/d3dcompiler/tst_d3dcompiler.cpp +++ b/tests/auto/other/d3dcompiler/tst_d3dcompiler.cpp @@ -329,8 +329,9 @@ void tst_d3dcompiler::onlineCompile() QVERIFY(path.exists(QStringLiteral("source"))); QVERIFY(path.exists(QStringLiteral("binary"))); - const QByteArray hash = QCryptographicHash::hash(data, QCryptographicHash::Sha1).toHex(); - QFile input(path.absoluteFilePath(QStringLiteral("source/") + hash)); + const QString fileName = QCryptographicHash::hash(data, QCryptographicHash::Sha1).toHex() + + QStringLiteral("!main!ps_4_0!0"); + QFile input(path.absoluteFilePath(QStringLiteral("source/") + fileName)); QTRY_VERIFY_WITH_TIMEOUT(input.exists(), 3000); QTRY_VERIFY_WITH_TIMEOUT(input.isOpen() || input.open(QFile::ReadOnly), 1000); @@ -351,7 +352,7 @@ void tst_d3dcompiler::onlineCompile() reference->Release(); // Write to output directory - QFile output(path.absoluteFilePath(QStringLiteral("binary/") + hash)); + QFile output(path.absoluteFilePath(QStringLiteral("binary/") + fileName)); QVERIFY(output.open(QFile::WriteOnly)); output.write(referenceData); output.close(); -- cgit v1.2.3