X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-core.git;a=blobdiff_plain;f=dali%2Fpublic-api%2Frendering%2Fframe-buffer.cpp;h=607a79bc0788861615adf6ea93cd5a23cd5b8c7f;hp=af6b8e14c9b8e3ca0c6d54d5d8743287a869f027;hb=646f736e77b085c86e982c0d1d4b895c2a431330;hpb=b41db98148be41ef5928f4335e985bf62252dde7 diff --git a/dali/public-api/rendering/frame-buffer.cpp b/dali/public-api/rendering/frame-buffer.cpp index af6b8e1..607a79b 100644 --- a/dali/public-api/rendering/frame-buffer.cpp +++ b/dali/public-api/rendering/frame-buffer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2016 Samsung Electronics Co., Ltd. + * Copyright (c) 2018 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use *this file except in compliance with the License. @@ -25,7 +25,7 @@ namespace Dali { -FrameBuffer FrameBuffer::New( unsigned int width, unsigned int height, unsigned int attachments ) +FrameBuffer FrameBuffer::New( uint32_t width, uint32_t height, uint32_t attachments ) { Internal::FrameBufferPtr frameBuffer = Internal::FrameBuffer::New( width, height, attachments ); return FrameBuffer( frameBuffer.Get() ); @@ -65,7 +65,7 @@ void FrameBuffer::AttachColorTexture( Texture& texture ) AttachColorTexture( texture, 0u, 0u ); } -void FrameBuffer::AttachColorTexture( Texture& texture, unsigned int mipmapLevel, unsigned int layer ) +void FrameBuffer::AttachColorTexture( Texture& texture, uint32_t mipmapLevel, uint32_t layer ) { if( texture ) {