Rename reader/spv to reader/spirv
Bug: tint:3 Change-Id: I7707e2f9e51c1574e5dde18c83957573671dac70 Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/17000 Reviewed-by: dan sinclair <dsinclair@google.com>
This commit is contained in:
parent
3ac99398b5
commit
4e7f7da729
|
@ -27,7 +27,7 @@
|
||||||
#include "src/writer/writer.h"
|
#include "src/writer/writer.h"
|
||||||
|
|
||||||
#if TINT_BUILD_SPV_PARSER
|
#if TINT_BUILD_SPV_PARSER
|
||||||
#include "src/reader/spv/parser.h"
|
#include "src/reader/spirv/parser.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
|
|
|
@ -189,11 +189,11 @@ set(TINT_LIB_SRCS
|
||||||
|
|
||||||
if(TINT_BUILD_SPV_PARSER)
|
if(TINT_BUILD_SPV_PARSER)
|
||||||
list(APPEND TINT_LIB_SRCS
|
list(APPEND TINT_LIB_SRCS
|
||||||
reader/spv/fail_stream.h
|
reader/spirv/fail_stream.h
|
||||||
reader/spv/parser.cc
|
reader/spirv/parser.cc
|
||||||
reader/spv/parser.h
|
reader/spirv/parser.h
|
||||||
reader/spv/parser_impl.cc
|
reader/spirv/parser_impl.cc
|
||||||
reader/spv/parser_impl.h
|
reader/spirv/parser_impl.h
|
||||||
)
|
)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
@ -352,12 +352,12 @@ endif()
|
||||||
|
|
||||||
if(${TINT_BUILD_SPV_PARSER})
|
if(${TINT_BUILD_SPV_PARSER})
|
||||||
list (APPEND TINT_TEST_SRCS
|
list (APPEND TINT_TEST_SRCS
|
||||||
reader/spv/fail_stream_test.cc
|
reader/spirv/fail_stream_test.cc
|
||||||
reader/spv/parser_impl_import_test.cc
|
reader/spirv/parser_impl_import_test.cc
|
||||||
reader/spv/parser_impl_test.cc
|
reader/spirv/parser_impl_test.cc
|
||||||
reader/spv/parser_test.cc
|
reader/spirv/parser_test.cc
|
||||||
reader/spv/spirv_tools_helpers_test.cc
|
reader/spirv/spirv_tools_helpers_test.cc
|
||||||
reader/spv/spirv_tools_helpers_test.h
|
reader/spirv/spirv_tools_helpers_test.h
|
||||||
)
|
)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
#include "src/reader/spv/fail_stream.h"
|
#include "src/reader/spirv/fail_stream.h"
|
||||||
|
|
||||||
#include <memory>
|
#include <memory>
|
||||||
#include <sstream>
|
#include <sstream>
|
|
@ -12,9 +12,9 @@
|
||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
#include "src/reader/spv/parser.h"
|
#include "src/reader/spirv/parser.h"
|
||||||
|
|
||||||
#include "src/reader/spv/parser_impl.h"
|
#include "src/reader/spirv/parser_impl.h"
|
||||||
|
|
||||||
namespace tint {
|
namespace tint {
|
||||||
namespace reader {
|
namespace reader {
|
|
@ -16,7 +16,7 @@
|
||||||
|
|
||||||
#include "source/opt/build_module.h"
|
#include "source/opt/build_module.h"
|
||||||
#include "spirv-tools/libspirv.hpp"
|
#include "spirv-tools/libspirv.hpp"
|
||||||
#include "src/reader/spv/parser_impl.h"
|
#include "src/reader/spirv/parser_impl.h"
|
||||||
|
|
||||||
namespace tint {
|
namespace tint {
|
||||||
namespace reader {
|
namespace reader {
|
|
@ -31,7 +31,7 @@
|
||||||
#include "src/ast/import.h"
|
#include "src/ast/import.h"
|
||||||
#include "src/ast/module.h"
|
#include "src/ast/module.h"
|
||||||
#include "src/reader/reader.h"
|
#include "src/reader/reader.h"
|
||||||
#include "src/reader/spv/fail_stream.h"
|
#include "src/reader/spirv/fail_stream.h"
|
||||||
|
|
||||||
namespace tint {
|
namespace tint {
|
||||||
namespace reader {
|
namespace reader {
|
|
@ -12,13 +12,13 @@
|
||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
#include "src/reader/spv/parser_impl.h"
|
#include "src/reader/spirv/parser_impl.h"
|
||||||
|
|
||||||
#include <memory>
|
#include <memory>
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
|
|
||||||
#include "gmock/gmock.h"
|
#include "gmock/gmock.h"
|
||||||
#include "src/reader/spv/spirv_tools_helpers_test.h"
|
#include "src/reader/spirv/spirv_tools_helpers_test.h"
|
||||||
|
|
||||||
namespace tint {
|
namespace tint {
|
||||||
namespace reader {
|
namespace reader {
|
|
@ -12,13 +12,13 @@
|
||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
#include "src/reader/spv/parser_impl.h"
|
#include "src/reader/spirv/parser_impl.h"
|
||||||
|
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
#include "gmock/gmock.h"
|
#include "gmock/gmock.h"
|
||||||
#include "src/reader/spv/spirv_tools_helpers_test.h"
|
#include "src/reader/spirv/spirv_tools_helpers_test.h"
|
||||||
|
|
||||||
namespace tint {
|
namespace tint {
|
||||||
namespace reader {
|
namespace reader {
|
|
@ -12,7 +12,7 @@
|
||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
#include "src/reader/spv/parser.h"
|
#include "src/reader/spirv/parser.h"
|
||||||
|
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
#include <vector>
|
#include <vector>
|
|
@ -12,7 +12,7 @@
|
||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
#include "src/reader/spv/spirv_tools_helpers_test.h"
|
#include "src/reader/spirv/spirv_tools_helpers_test.h"
|
||||||
|
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
#include <sstream>
|
#include <sstream>
|
Loading…
Reference in New Issue