-
Notifications
You must be signed in to change notification settings - Fork 202
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Address remaining feedback in lib/usd and plugin/adsk #408
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,8 +35,8 @@ | |
#include <mayaUsd/fileio/translators/translatorUtil.h> | ||
#include <mayaUsd/fileio/writeJobContext.h> | ||
|
||
#include <mayaUsd_Translators/jointWriter.h> | ||
#include <mayaUsd_Translators/meshWriter.h> | ||
#include "jointWriter.h" | ||
#include "meshWriter.h" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
|
||
PXR_NAMESPACE_OPEN_SCOPE | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,7 @@ | |
#include <pxr/pxr.h> | ||
#include <pxr/usd/usdGeom/mesh.h> | ||
|
||
#include <mayaUsd_Translators/meshWriter.h> | ||
#include "meshWriter.h" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
|
||
PXR_NAMESPACE_OPEN_SCOPE | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,15 +23,6 @@ | |
#include <pxr/base/plug/plugin.h> | ||
#include <pxr/base/plug/registry.h> | ||
|
||
#include <mayaUsd/utils/undoHelperCommand.h> | ||
#if defined(WANT_QT_BUILD) | ||
#include <mayaUsdUI/ui/USDImportDialogCmd.h> | ||
#endif | ||
|
||
#if defined(WANT_UFE_BUILD) | ||
#include <mayaUsd/ufe/Global.h> | ||
#endif | ||
|
||
#include <mayaUsd/base/api.h> | ||
#include <mayaUsd/nodes/proxyShapeBase.h> | ||
#include <mayaUsd/nodes/proxyShapePlugin.h> | ||
|
@@ -44,6 +35,15 @@ | |
#include "importTranslator.h" | ||
#include "ProxyShape.h" | ||
|
||
#include <mayaUsd/utils/undoHelperCommand.h> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This include is not part of a conditional and should stay with the |
||
#if defined(WANT_QT_BUILD) | ||
#include <mayaUsdUI/ui/USDImportDialogCmd.h> | ||
#endif | ||
|
||
#if defined(WANT_UFE_BUILD) | ||
#include <mayaUsd/ufe/Global.h> | ||
#endif | ||
|
||
PXR_NAMESPACE_USING_DIRECTIVE | ||
|
||
MAYAUSD_PLUGIN_PUBLIC | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
meshWriter.h
to me is the related header for this file, so I'd think it should go at the top in a group of its own.