-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Project import generated by Copybara.
GitOrigin-RevId: cfbd06bf229c1d4137f7c5f31c4ef978044546ab
- Loading branch information
1 parent
8307765
commit ee5eead
Showing
17 changed files
with
271 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"extends": [ | ||
"config:base" | ||
], | ||
"ignorePaths": [ | ||
".buildkite", | ||
".github", | ||
"archive", | ||
"assets", | ||
"bazel_demos", | ||
"build_tools", | ||
"dvpe", | ||
"infrastructure", | ||
"literature", | ||
"mirror", | ||
"modernizer", | ||
"motivation", | ||
"photos", | ||
"resume", | ||
"third_party", | ||
"wiki", | ||
"zero_ray" | ||
], | ||
"regexManagers": [ | ||
{ | ||
"fileMatch": "\\.bazelversion", | ||
"matchStrings": [ | ||
"(?<currentValue>[0-9]+.[0-9]+.[0-9]+)" | ||
], | ||
"depNameTemplate": "bazelbuild/bazel", | ||
"datasourceTemplate": "github-releases" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
7.3.1 | ||
7.3.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# Empty by intend |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
--- /dev/null | ||
+++ BUILD.bazel | ||
@@ -0,0 +1,83 @@ | ||
+# SPDX-License-Identifier: BSD-3-Clause | ||
+# Copyright (c) Contributors to the OpenEXR Project. | ||
+ | ||
+load("@bazel_skylib//rules:expand_template.bzl", "expand_template") | ||
+ | ||
+expand_template( | ||
+ name = "ImathConfig", | ||
+ out = "src/Imath/ImathConfig.h", | ||
+ substitutions = { | ||
+ "@IMATH_INTERNAL_NAMESPACE@": "Imath_3_1", | ||
+ "@IMATH_LIB_VERSION@": "3.1.12", | ||
+ "@IMATH_NAMESPACE_CUSTOM@": "0", | ||
+ "@IMATH_NAMESPACE@": "Imath", | ||
+ "@IMATH_PACKAGE_NAME@": "Imath 3.1.12", | ||
+ "@Imath_VERSION_MAJOR@": "3", | ||
+ "@Imath_VERSION_MINOR@": "1", | ||
+ "@Imath_VERSION_PATCH@": "12", | ||
+ "@IMATH_VERSION@": "3.1.12", | ||
+ "#cmakedefine IMATH_HALF_USE_LOOKUP_TABLE": "#define IMATH_HALF_USE_LOOKUP_TABLE", | ||
+ "#cmakedefine IMATH_ENABLE_API_VISIBILITY": "#define IMATH_ENABLE_API_VISIBILITY", | ||
+ "#cmakedefine IMATH_HAVE_LARGE_STACK": "/* #undef IMATH_HAVE_LARGE_STACK */", | ||
+ "#cmakedefine01 IMATH_USE_NOEXCEPT": "#define IMATH_USE_NOEXCEPT 1", | ||
+ }, | ||
+ template = "config/ImathConfig.h.in", | ||
+ visibility = ["//visibility:public"], | ||
+) | ||
+ | ||
+cc_library( | ||
+ name = "Imath", | ||
+ srcs = [ | ||
+ "src/Imath/ImathColorAlgo.cpp", | ||
+ "src/Imath/ImathFun.cpp", | ||
+ "src/Imath/ImathMatrixAlgo.cpp", | ||
+ "src/Imath/ImathRandom.cpp", | ||
+ "src/Imath/half.cpp", | ||
+ "src/Imath/toFloat.h", | ||
+ ], | ||
+ hdrs = [ | ||
+ "src/Imath/ImathBox.h", | ||
+ "src/Imath/ImathBoxAlgo.h", | ||
+ "src/Imath/ImathColor.h", | ||
+ "src/Imath/ImathColorAlgo.h", | ||
+ "src/Imath/ImathConfig.h", | ||
+ "src/Imath/ImathEuler.h", | ||
+ "src/Imath/ImathExport.h", | ||
+ "src/Imath/ImathForward.h", | ||
+ "src/Imath/ImathFrame.h", | ||
+ "src/Imath/ImathFrustum.h", | ||
+ "src/Imath/ImathFrustumTest.h", | ||
+ "src/Imath/ImathFun.h", | ||
+ "src/Imath/ImathGL.h", | ||
+ "src/Imath/ImathGLU.h", | ||
+ "src/Imath/ImathInt64.h", | ||
+ "src/Imath/ImathInterval.h", | ||
+ "src/Imath/ImathLine.h", | ||
+ "src/Imath/ImathLineAlgo.h", | ||
+ "src/Imath/ImathMath.h", | ||
+ "src/Imath/ImathMatrix.h", | ||
+ "src/Imath/ImathMatrixAlgo.h", | ||
+ "src/Imath/ImathNamespace.h", | ||
+ "src/Imath/ImathPlane.h", | ||
+ "src/Imath/ImathPlatform.h", | ||
+ "src/Imath/ImathQuat.h", | ||
+ "src/Imath/ImathRandom.h", | ||
+ "src/Imath/ImathRoots.h", | ||
+ "src/Imath/ImathShear.h", | ||
+ "src/Imath/ImathSphere.h", | ||
+ "src/Imath/ImathTypeTraits.h", | ||
+ "src/Imath/ImathVec.h", | ||
+ "src/Imath/ImathVecAlgo.h", | ||
+ "src/Imath/half.h", | ||
+ "src/Imath/halfFunction.h", | ||
+ "src/Imath/halfLimits.h", | ||
+ ], | ||
+ includes = ["src/Imath"], | ||
+ visibility = ["//visibility:public"], | ||
+) | ||
+ | ||
+alias( | ||
+ name = "imath", | ||
+ actual = ":Imath", | ||
+ visibility = ["//visibility:public"], | ||
+) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- MODULE.bazel | ||
+++ MODULE.bazel | ||
@@ -0,0 +1,6 @@ | ||
+module( | ||
+ name = "imath", | ||
+ compatibility_level = 1, | ||
+) | ||
+ | ||
+bazel_dep(name = "bazel_skylib", version = "1.7.1") |
Oops, something went wrong.