-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support stereo image streaming using Deflect
- Loading branch information
Stefan Eilemann
authored and
Stefan Eilemann
committed
Mar 24, 2017
1 parent
d542070
commit 743f601
Showing
14 changed files
with
158 additions
and
99 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
# -*- mode: cmake -*- | ||
# CMake/common https://github.com/Eyescale/CMake.git 6a44f78 | ||
# CMake/common https://github.com/Eyescale/CMake.git e3a2dba |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
|
||
/* Copyright (c) 2013-2015, Daniel Nachbaur <[email protected]> | ||
/* Copyright (c) 2013-2017, Daniel Nachbaur <[email protected]> | ||
* | ||
* This library is free software; you can redistribute it and/or modify it under | ||
* the terms of the GNU Lesser General Public License version 2.1 as published | ||
|
@@ -39,6 +39,9 @@ class Proxy : public ResultImageListener | |
/** Stream the given image to the Deflect host. */ | ||
void notifyNewImage( Channel& channel, const Image& image ) final; | ||
|
||
/** Complete stream operations and show image on server. */ | ||
void notifyFinishFrame() final; | ||
|
||
/** @return the associated destination channel. */ | ||
Channel& getChannel(); | ||
|
||
|
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,16 +1,16 @@ | ||
|
||
/* Copyright (c) 2007-2012, Stefan Eilemann <[email protected]> | ||
* 2010, Cedric Stalder <[email protected]> | ||
/* Copyright (c) 2007-2017, Stefan Eilemann <[email protected]> | ||
* Cedric Stalder <[email protected]> | ||
* | ||
* This library is free software; you can redistribute it and/or modify it under | ||
* the terms of the GNU Lesser General Public License version 2.1 as published | ||
* by the Free Software Foundation. | ||
* | ||
* | ||
* This library is distributed in the hope that it will be useful, but WITHOUT | ||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS | ||
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more | ||
* details. | ||
* | ||
* | ||
* You should have received a copy of the GNU Lesser General Public License | ||
* along with this library; if not, write to the Free Software Foundation, Inc., | ||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | ||
|
@@ -23,17 +23,20 @@ | |
|
||
namespace eq | ||
{ | ||
using fabric::Eye; | ||
using fabric::Eye; | ||
|
||
/** @cond IGNORE */ | ||
using fabric::EYE_UNDEFINED; | ||
using fabric::EYE_CYCLOP; | ||
using fabric::EYE_LEFT; | ||
using fabric::EYE_RIGHT; | ||
using fabric::EYES_STEREO; | ||
using fabric::EYES_ALL; | ||
using fabric::NUM_EYES; | ||
/** @endcond */ | ||
/** @cond IGNORE */ | ||
using fabric::EYE_UNDEFINED; | ||
using fabric::EYE_CYCLOP; | ||
using fabric::EYE_LEFT; | ||
using fabric::EYE_RIGHT; | ||
using fabric::EYE_CYCLOP_BIT; | ||
using fabric::EYE_LEFT_BIT; | ||
using fabric::EYE_RIGHT_BIT; | ||
using fabric::EYES_STEREO; | ||
using fabric::EYES_ALL; | ||
using fabric::NUM_EYES; | ||
/** @endcond */ | ||
} | ||
|
||
#endif // EQ_EYE_H |
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
Oops, something went wrong.