Resizing Stage3D Dynamically?

Is there a way to change the size of the 3D stage with the flash window size dynamically? When using Starling going into fullscreen I can’t seem to get the 3d content to either zoom or have the stage increase in side. 3D content is only visible in the original area set by the movie size.

Maybe I need to re-initialize all of the 3d classes and set them to the screen size when the user switches from window to fullscreen?

Edit: Got that working, now how do I stop the content from zooming…

    stage.addEventListener(ResizeEvent.RESIZE, resizeStage);
        
        private function resizeStage(e:Event) {
            var viewPortRectangle:Rectangle = new Rectangle();
            viewPortRectangle.width = stage.stageWidth;
            viewPortRectangle.height = stage.stageHeight;
            Starling.current.viewPort = viewPortRectangle;
            
            stage.stageWidth = stage.stageWidth;
            stage.stageHeight = stage.stageHeight;
        }