Skip to content

Commit

Permalink
Adding missing __init__.py for CPU rasterizer.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 388728569
  • Loading branch information
tensorflower-gardener authored and Copybara-Service committed Aug 4, 2021
1 parent e9784bd commit 3679b48
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions tensorflow_graphics/rendering/kernels/__init__.py
@@ -0,0 +1,18 @@
# Copyright 2020 The TensorFlow Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""CPU Rasterizer module."""
from tensorflow_graphics.util import export_api as _export_api

# API contains submodules of tensorflow_graphics.rendering.
__all__ = _export_api.get_modules()

0 comments on commit 3679b48

Please sign in to comment.