Quantcast
Jump to content


Recommended Posts

Posted

2021-06-28-01-banner.jpg

The Samsung Developers team works with many companies in the mobile and gaming ecosystems. We're excited to support our partner, Arm, as they bring timely and relevant content to developers looking to build games and high-performance experiences. This Vulkan Extensions series will help developers get the most out of the new and game-changing Vulkan extensions on Samsung mobile devices.

As I mentioned previously, Android is enabling a host of useful new Vulkan extensions for mobile. These new extensions are set to improve the state of graphics APIs for modern applications, enabling new use cases and changing how developers can design graphics renderers going forward. These extensions will be available across various Android smartphones, including the new Samsung Galaxy S21, which was recently launched on 14 January. Existing Samsung Galaxy S models, such as the Samsung Galaxy S20, also allow upgrades to Android R.

I have already discussed two of these extensions in previous blogs - Maintenance Extensions and Legacy Support Extensions. However, there are three further Vulkan extensions for Android that I believe are ‘game changers’. In the first of three blogs, I will explore these individual game changer extensions – what they do, why they can be useful and how to use them. The goal here is to not provide complete samples, but there should be enough to get you started. The first Vulkan extension is ‘Descriptor Indexing.’ Descriptor indexing can be available in handsets prior to Android R release. To check what Android devices are available with 'Descriptor Indexing' check here. You can also directly view the Khronos Group/ Vulkan samples that are relevant to this blog here.

VK_EXT_descriptor_indexing

Introduction

In recent years, we have seen graphics APIs greatly evolve in their resource binding flexibility. All modern graphics APIs now have some answer to how we can access a large swathes of resources in a shader.

Bindless

A common buzzword that is thrown around in modern rendering tech is “bindless”. The core philosophy is that resources like textures and buffers are accessed through simple indices or pointers, and not singular “resource bindings”. To pass down resources to our shaders, we do not really bind them like in the graphics APIs of old. Simply write a descriptor to some memory and a shader can come in and read it later. This means the API machinery to drive this is kept to a minimum.

This is a fundamental shift away from the older style where our rendering loop looked something like:

render_scene() {
    foreach(drawable) {
        command_buffer->update_descriptors(drawable);
        command_buffer->draw();
    }
}

Now it looks more like:

render_scene() {
    command_buffer->bind_large_descriptor_heap();
    large_descriptor_heap->write_global_descriptors(scene, lighting, shadowmaps);
    foreach(drawable) {
        offset = large_descriptor_heap->allocate_and_write_descriptors(drawable);  
        command_buffer->push_descriptor_heap_offsets(offset);
        command_buffer->draw();
    }
}

Since we have free-form access to resources now, it is much simpler to take advantage of features like multi-draw or other GPU driven approaches. We no longer require the CPU to rebind descriptor sets between draw calls like we used to.

Going forward when we look at ray-tracing, this style of design is going to be mandatory since shooting a ray means we can hit anything, so all descriptors are potentially used. It is useful to start thinking about designing for this pattern going forward.

The other side of the coin with this feature is that it is easier to shoot yourself in the foot. It is easy to access the wrong resource, but as I will get to later, there are tools available to help you along the way.

VK_EXT_descriptor_indexing features

This extension is a large one and landed in Vulkan 1.2 as a core feature. To enable bindless algorithms, there are two major features exposed by this extension.

Non-uniform indexing of resources

How resources are accessed has evolved quite a lot over the years. Hardware capabilities used to be quite limited, with a tiny bank of descriptors being visible to shaders at any one time. In more modern hardware however, shaders can access descriptors freely from memory and the limits are somewhat theoretical.

Constant indexing

Arrays of resources have been with us for a long time, but mostly as syntactic sugar, where we can only index into arrays with a constant index. This is equivalent to not using arrays at all from a compiler point of view.

layout(set = 0, binding = 0) uniform sampler2D Textures[4];
const int CONSTANT_VALUE = 2;
color = texture(Textures[CONSTANT_VALUE], UV);

HLSL in D3D11 has this restriction as well, but it has been more relaxed about it, since it only requires that the index is constant after optimization passes are run.

Dynamic indexing

As an optional feature, dynamic indexing allows applications to perform dynamic indexing into arrays of resources. This allows for a very restricted form of bindless. Outside compute shaders however, using this feature correctly is quite awkward, due to the requirement of the resource index being dynamically uniform.

Dynamically uniform is a somewhat intricate subject, and the details are left to the accompanying sample in KhronosGroup/Vulkan-Samples.

Non-uniform indexing

Most hardware assumes that the resource index is dynamically uniform, as this has been the restriction in APIs for a long time. If you are not accessing resources with a dynamically uniform index, you must notify the compiler of your intent.

The rationale here is that hardware is optimized for dynamically uniform (or subgroup uniform) indices, so there is often an internal loop emitted by either compiler or hardware to handle every unique index that is used. This means performance tends to depend a bit on how divergent resource indices are.

#extension GL_EXT_nonuniform_qualifier : require
layout(set = 0, binding = 0) uniform texture2D Tex[];
layout(set = 1, binding = 0) uniform sampler Sampler;
color = texture(nonuniformEXT(sampler2D(Tex[index], Sampler)), UV);

In HLSL, there is a similar mechanism where you use NonUniformResourceIndex, for example.

Texture2D<float4> Textures[] : register(t0, space0);
SamplerState Samp : register(s0, space0);
float4 color = Textures[NonUniformResourceIndex(index)].Sample(Samp, UV);

All descriptor types can make use of this feature, not just textures, which is quite handy! The nonuniformEXT qualifier removes the requirement to use dynamically uniform indices. See the code sample for more detail.

Update-after-bind

A key component to make the bindless style work is that we do not have to … bind descriptor sets all the time. With the update-after-bind feature, we effectively block the driver from consuming descriptors at command recording time, which gives a lot of flexibility back to the application. The shader consumes descriptors as they are used and the application can freely update descriptors, even from multiple threads.

To enable, update-after-bind we modify the VkDescriptorSetLayout by adding new binding flags. The way to do this is somewhat verbose, but at least update-after-bind is something that is generally used for just one or two descriptor set layouts throughout most applications:

VkDescriptorSetLayoutCreateInfo info = { … };
info.flags = VK_DESCRIPTOR_SET_LAYOUT_CREATE_UPDATE_AFTER_BIND_POOL_BIT_EXT;
const VkDescriptorBindingFlagsEXT flags =
    VK_DESCRIPTOR_BINDING_VARIABLE_DESCRIPTOR_COUNT_BIT_EXT |    
    VK_DESCRIPTOR_BINDING_PARTIALLY_BOUND_BIT_EXT |
    VK_DESCRIPTOR_BINDING_UPDATE_AFTER_BIND_BIT_EXT |
    VK_DESCRIPTOR_BINDING_UPDATE_UNUSED_WHILE_PENDING_BIT_EXT;
VkDescriptorSetLayoutBindingFlagsCreateInfoEXT binding_flags = { … };
binding_flags.bindingCount = info.bindingCount;
binding_flags.pBindingFlags = &flags;
info.pNext = &binding_flags;

For each pBinding entry, we have a corresponding flags field where we can specify various flags. The descriptor_indexing extension has very fine-grained support, but UPDATE_AFTER_BIND_BIT and VARIABLE_DESCRIPTOR_COUNT_BIT are the most interesting ones to discuss.

VARIABLE_DESCRIPTOR_COUNT deserves special attention as it makes descriptor management far more flexible. Having to use a fixed array size can be somewhat awkward, since in a common usage pattern with a large descriptor heap, there is no natural upper limit to how many descriptors we want to use. We could settle for some arbitrarily high limit like 500k, but that means all descriptor sets we allocate have to be of that size and all pipelines have to be tied to that specific number. This is not necessarily what we want, and VARIABLE_DESCRIPTOR_COUNT allows us to allocate just the number of descriptors we need per descriptor set. This makes it far more practical to use multiple bindless descriptor sets.

When allocating a descriptor set, we pass down the actual number of descriptors to allocate:

VkDescriptorSetVariableDescriptorCountAllocateInfoEXT variable_info = { … };
variable_info.sType =
        VK_STRUCTURE_TYPE_DESCRIPTOR_SET_VARIABLE_DESCRIPTOR_COUNT_ALLOCATE_INFO_EXT;
variable_info.descriptorSetCount = 1;
allocate_info.pNext = &variable_info;
variable_info.pDescriptorCounts = &NumDescriptorsStreaming;
VK_CHECK(vkAllocateDescriptorSets(get_device().get_handle(), &allocate_info, 
        &descriptors.descriptor_set_update_after_bind));

GPU-assisted validation and debugging

When we enter the world of descriptor indexing, there is a flipside where debugging and validation is much more difficult. The major benefit of the older binding models is that it is fairly easy for validation layers and debuggers to know what is going on. This is because the number of available resources to a shader is small and focused.

With UPDATE_AFTER_BIND in particular, we do not know anything at draw time, which makes this awkward.

It is possible to enable GPU assisted validation in the Khronos validation layers. This lets you catch issues like:

"UNASSIGNED-Descriptor uninitialized: Validation Error: [ UNASSIGNED-Descriptor uninitialized ] Object 0: handle = 0x55625acf5600, type = VK_OBJECT_TYPE_QUEUE; | MessageID = 0x893513c7 | Descriptor index 67 is uninitialized__.  Command buffer (0x55625b184d60). Draw Index 0x4. Pipeline (0x520000000052). Shader Module (0x510000000051). Shader Instruction Index = 59.  Stage = Fragment.  Fragment coord (x,y) = (944.5, 0.5).  Unable to find SPIR-V OpLine for source information.  Build shader with debug info to get source information."

Or:

"UNASSIGNED-Descriptor uninitialized: Validation Error: [ UNASSIGNED-Descriptor uninitialized ] Object 0: handle = 0x55625acf5600, type = VK_OBJECT_TYPE_QUEUE; | MessageID = 0x893513c7 | Descriptor index 131 is uninitialized__.  Command buffer (0x55625b1893c0). Draw Index 0x4. Pipeline (0x520000000052). Shader Module (0x510000000051). Shader Instruction Index = 59.  Stage = Fragment.  Fragment coord (x,y) = (944.5, 0.5).  Unable to find SPIR-V OpLine for source information.  Build shader with debug info to get source information."

RenderDoc supports debugging descriptor indexing through shader instrumentation, and this allows you to inspect which resources were accessed. When you have several thousand resources bound to a pipeline, this feature is critical to make any sense of the inputs.

If we are using the update-after-bind style, we can inspect the exact resources we used.

In a non-uniform indexing style, we can inspect all unique resources we used.

Conclusion

Descriptor indexing unlocks many design possibilities in your engine and is a real game changer for modern rendering techniques. Use with care, and make sure to take advantage of all debugging tools available to you. You need them.

This blog has explored the first Vulkan extension game changer, with two more parts in this game changer blog series still to come. The next part will focus on ‘Buffer Device Address’ and how developers can use this new feature to enhance their games.

Follow Up

Thanks to Hans-Kristian Arntzen and the team at Arm for bringing this great content to the Samsung Developers community. We hope you find this information about Vulkan extensions useful for developing your upcoming mobile games. The original version of this article can be viewed at Arm Community.

The Samsung Developers site has many resources for developers looking to build for and integrate with Samsung devices and services. Stay in touch with the latest news by creating a free account or by subscribing to our monthly newsletter. Visit the Marketing Resources page for information on promoting and distributing your apps and games. Finally, our developer forum is an excellent way to stay up-to-date on all things related to the Galaxy ecosystem.

View the full blog at its source



  • Replies 0
  • Created
  • Last Reply

Top Posters In This Topic

Popular Days

Top Posters In This Topic

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
  • Similar Topics

    • By Samsung Newsroom
      In video content, audio is just as essential as the visuals, playing a key role in immersion and making viewers feel as if they are part of the scene. To create a truly optimized sound experience, Samsung Electronics collaborated with Google to develop Eclipsa Audio — a cutting-edge 3D audio technology officially introduced through Samsung TVs last month at the Consumer Electronics Show (CES) 2025 in Las Vegas.
       
      Samsung Newsroom took a closer look at the technology behind Eclipsa Audio and how it delivers lifelike 3D spatial audio.
       

       
       
      Developing 3D Spatial Audio Technology
      In 2023, the Alliance for Open Media (AOM) — a global consortium that includes Samsung, Google, Netflix, Meta and other leading companies — officially adopted Immersive Audio Model and Formats (IAMF) as the industry standard for 3D audio. Developed by Samsung and Google, this innovative 3D audio format is currently available to content creators under the brand name Eclipsa Audio.
       
      Eclipsa Audio establishes a shared protocol between different types of media content and the devices that play them. The format delivers a deeply immersive listening experience by optimizing and adapting audio positioning, intensity, spatial reflections and other sound elements to various output environments, such as cinemas, home theater systems, gaming consoles and mobile devices.
       
      Depending on the output device, the technology can render sound from multiple directions — including from the front, back, left, right, above and below — to create a sense of spatial depth and presence within the scene being watched. In a concert video for instance, Eclipsa Audio presents the artist’s performance in crystal-clear detail while also capturing the energy of the audience, making the viewer feel as if they are physically there.
       
       
      Designed for Optimal 3D Audio in Everyday Life
      Among the growing range of technologies enhancing 3D sound — including surround sound, immersive audio and spatial audio — Eclipsa Audio was specifically designed to provide a 3D audio experience optimized for everyday listening.
       
      Traditionally, 3D audio content is created with the assumption that it will be played in environments equipped with multiple surround speakers. However, most home entertainment setups primarily consist of a TV and a soundbar — making it challenging to accurately replicate the content creator’s intended spatial audio effects. Eclipsa Audio overcomes this limitation by automatically analyzing sound elements in each segment of a film — from whispered dialogue to the roar of fighter jets in the background — and delivering a dynamic 3D audio effect fine-tuned for the viewer’s home environment.
       
       
      Building a 3D Audio Ecosystem With Open-Source Technology
      Eclipsa Audio’s open-source framework sets it apart from other 3D audio technologies by allowing anyone to create 3D audio content without paying royalties. Following its debut at CES 2025, the technology has been met with enthusiasm from content creators and has gained momentum across media platforms and online communities.
       
      In this way, Eclipsa Audio serves as an open vessel in which content creators can integrate 3D audio elements from all directions without restrictions. By democratizing spatial audio, Eclipsa Audio empowers content creators and ensures that consumers experience sound as intended — regardless of their audio setup.
       
       
      Eclipsa Audio on Samsung TVs
      Eclipsa Audio’s immersive 3D sound performs at its best when paired with exceptional hardware. To make that peak performance a reality, Samsung and Google have worked tirelessly to provide consumers with Eclipsa Audio-supported 3D audio content — soon to be available via the YouTube app on Samsung’s latest TVs. Eclipsa Audio is set to roll out across the company’s entire 2025 TV lineup from the Crystal UHD series to the premium flagship Neo QLED 8K models.1
       
      Most Samsung TVs are equipped with stereo speakers at the bottom of the screen, and for QLED 4K models and above, additional speakers are positioned at the top. Flagship models, though, come with extra benefits. Besides surround speakers added to the rear of the sides, their top-positioned speakers are specially designed for height perception. Eclipsa Audio reflects sound off the ceiling with these special speakers, creating an effect that allows viewers to experience upward-directional audio — such as the sensation of an object flying overhead. Pairing the TV with a soundbar further enhances the experience, producing richer and more expansive 3D spatial audio.
       
      Eclipsa Audio has established the foundation for a 3D audio content ecosystem by bringing industry leaders — from device manufacturers to content platforms — together under a unified standard. In an era where streaming services blur the line between content creation and consumption, Eclipsa Audio unlocks new possibilities for immersive sound that Samsung is determined to further expand.
       
       
      1 Rollout schedule and service details may vary depending on the TV model.
      View the full article
    • By Samsung Newsroom
      Samsung Electronics today announced that it has secured its position as the global leader in the TV market for the 19th consecutive year.
       
      According to market research firm Omdia, Samsung achieved a 28.3% market share in the global TV market in 2024, maintaining the number one ranking it has held since 2006. This continued success is driven by the company’s commitment to premium and ultra-large screen innovation, as well as the introduction of cutting-edge, AI-powered TVs.
       
      “Samsung’s 19-year reign as the global TV market leader has been made possible by the trust and support of our customers,” said Hun Lee, Executive Vice President of Visual Display Business at Samsung Electronics. “We will continue to shape the future of the TV industry with innovations like AI-powered TVs, delivering products and services that meaningfully enrich people’s lives.”
       
      ▲ Samsung Electronics secured its position as the global leader in the TV market for the 19th consecutive year (Source: Omdia , Feb-2024. Results are not an endorsement of Samsung)
       
       
      Dominance in the Premium and Ultra-Large TV Segments
      Samsung solidified its leadership in the high-end TV market, particularly in the premium ($2,500+) and ultra-large (75-inch and above) segments:
       
      Premium ($2,500+) TVs – Samsung captured a 49.6% market share, accounting for nearly half of the global premium TV market. 75-inch and above – Samsung led the ultra-large category with a 28.7% market share.  
       
      QLED and OLED TV Success
      Samsung also maintained its leadership in the QLED and OLED segments, reinforcing its dominance in the premium TV industry:
       
      QLED TVs – With 8.34 million units sold, Samsung commanded a 46.8% market share, further strengthening its leadership in this category. The global QLED market also saw significant growth, surpassing 10% of total TV sales for the first time. OLED TVs – Samsung’s OLED sales reached 1.44 million units in 2024, securing a 27.3% market share. This marks a year-over-year (YoY) increase of 42% and 4.6% in unit sales and market share, respectively, reflecting strong consumer demand for Samsung’s OLED innovations.  
       
      Transforming Home Entertainment With AI and Art
      At CES 2025, Samsung unveiled Vision AI, a breakthrough in AI-powered screens that extends beyond traditional entertainment. By analyzing user preferences, intent and habits, Vision AI delivers a seamlessly personalized viewing experience that shapes the future of smart home displays.
       
      Samsung is also expanding its Samsung Art Store — originally available exclusively on The Frame — to Neo QLED and QLED models this year, providing more consumers with access to a personalized digital art experience.
      View the full article
    • By Samsung Newsroom
      As Europe’s largest display exhibition, Integrated Systems Europe (ISE) always highlights the best of the best in digital signage. This year was no different with Samsung Electronics and other industry-leading companies setting the stage for the future by pushing the boundaries of innovation.
       
      ▲ Samsung received a total of 12 awards, including five Best of Show awards at ISE 2025.
       
      Samsung’s booth entrance featured The Wall, drawing in visitors with an immersive anamorphic experience powered by cutting-edge MICRO LED technology. Throughout the booth, attendees caught a glimpse of the various environments being transformed by Samsung’s next-generation signage solutions — from corporate offices and classrooms to hotels and museums.
       
      ▲ Thousands of attendees made their way through Samsung’s engaging and expansive booth.
       
      Samsung Newsroom captured some of the standout products showcased at ISE 2025 that demonstrate Samsung’s leadership in commercial display technology.
       
      Samsung Color E-Paper: Ultra-Bright, Ultra-Light and Ultra-Efficient HoloDisplay: Bringing Signage to Life With 3D Innovation Transparent MICRO LED: Blending Reality and Digital Content Interactive Display: A Smarter, More Interactive Classroom Experience The Wall: Optimizing Command and Control Rooms With High-Resolution Displays The Wall for Virtual Production: A Seamless, Cost-Effective LED Stage Solution for Filmmakers SmartThings Pro: Expanding Partnerships and Enhancing IoT Automation Another Record-Breaking Year for Samsung at ISE 2025  
       
      Samsung Color E-Paper: Ultra-Bright, Ultra-Light and Ultra-Efficient
      ▲ (From left) Jungsuk Han, Jonghwa Bae and Kwangju Kim stand with ISE 2025 Best of Show trophies for Samsung Color E-Paper, which delivers vivid, high-intensity color in a remarkable form factor.
       
      Launched at ISE 2025, the energy-efficient Samsung Color E-Paper (EMDX model) stunned visitors with its vibrant digital ink technology and slim, lightweight design. This innovative signage solution is ideal for locations where content remains the same for a week or longer — such as retail or grocery stores and outdoor spaces such as bus stops. The display uses 0.00W1 of power when showing a static image and can easily be managed through a dedicated app2 or with Samsung VXT (Visual eXperience Transformation), a cloud-based content management solution (CMS) platform.
       
      Samsung Color E-Paper received numerous Best of Show awards at ISE 2025 from trade publications — including AV Technology, Digital Signage and Installation.
       
       
      HoloDisplay: Bringing Signage to Life With 3D Innovation

      ▲ A visitor reaches out to try and touch the 3D projected image in the innovative HoloDisplay, which creates a ‘floating object’ effect for an immersive experience
       
      Following its debut at CES 2025, the HoloDisplay captivated attendees with its anti-distortion technology that forms a floating image in midair and its brighter and sharper picture quality. The HoloDisplay also earned the Best of Show award at ISE 2025 from Installation.
       

      Transparent MICRO LED: Blending Reality and Digital Content
      ▲ The Transparent MICRO LED attracted visitors’ attention with its crystal-clear, glass-like display.
       
      The Transparent MICRO LED display brought a new viewing experience to attendees. With its crystal-clear, glass-like design and high resolution, the display earned industry recognition including this year’s Digital Signage Innovation of the Year award from AV News.
       

      Interactive Display: A Smarter, More Interactive Classroom Experience
      ▲ 2025 Interactive Display with Samsung AI Assistant
       
      Samsung showcased its 2025 Interactive Display with Samsung AI Assistant — a new educational solution designed to provide an interactive experience to students. Attendees explored the new AI capabilities now supported, such as Circle to Search.
       
      The 2025 Interactive Display earned the Best of Show award at ISE 2025 from the trade publication Tech & Learning, further solidifying its reputation as a cutting-edge educational solution.
       
       
      The Wall: Optimizing Command and Control Rooms With High-Resolution Displays
      ▲ A Traffic command and control demonstration at ISE 2025 (left) and NASCAR’s new remote race control room (right)
       
      Samsung showcased how The Wall can help businesses make fast and informed decisions. At the booth, attendees witnessed how the display can be used in settings such as control rooms to provide a large, dynamic canvas for real-time monitoring and decision-making.
       
      In the United States, NASCAR’s new remote race control room now utilizes The Wall enhanced race officiating. Officials can review comprehensive, real-time video, audio and data from the track and remotely oversee races on an impressive 32-foot-wide, 9-foot-tall screen.
       
       
      The Wall for Virtual Production: A Seamless, Cost-Effective LED Stage Solution for Filmmakers
      ▲ The Wall for Virtual Production in the corporate broadcast section in Samsung’s booth at ISE 2025
       
      Samsung hosted a live demonstration at Samsung Corporate Broadcast Studio inside the ISE 2025 venue to showcase the seamless integration of The Wall for Virtual Production (IVC model) with Arnold & Richter Cine Technik (ARRI) cameras and lighting fixtures as well as Realtime Department’s digital experience solution. The combination of these technologies created ready-to-shoot LED backgrounds for virtual production — ensuring exceptional image quality and ease of use for corporate, broadcast and media environments.
       
      “The collaboration with Samsung and Realtime Department has significantly lowered the entry barrier to LED production for filmmakers,” said Andre Rittner, Business Development Manager of EMEAI (Europe, the Middle East, Africa and India) at ARRI. “This partnership has brought ARRI’s award-winning equipment to a suite of studio production tools and reduced production costs without compromising quality.”
       
       
      SmartThings Pro: Expanding Partnerships and Enhancing IoT Automation

      ▲ The SmartThings Pro wall
       
      Samsung showcased how device ecosystems can be managed with SmartThings Pro — the company’s hyper-connected B2B platform featuring enterprise-level encryption to safeguard sensitive data across IoT connections.
       
      Several new partnerships enhance the functionality of SmartThings Pro in business settings.
       
      Meeting rooms: Cisco video conference cameras and dashboards connect with 105-inch 21:9 Smart signage for crystal clear video conferencing and intuitive control. The AMX Muse Automation Controller streamlines operation of The Wall without compromising security. Retail stores: Five Nexmosphere sensors expand SmartThings Pro’s capabilities in retail settings — a presence sensor, radio-frequency identification (RFID) sensor, lidar sensor, ambient lighting sensor and an NFC reader. Hotels: ABB devices integrate with NetX management systems and SmartThings Pro to create new guest experiences.  
       
      Another Record-Breaking Year for Samsung at ISE 2025
      Samsung’s leadership in digital signage was recognized at ISE 2025 with 12 awards from various organizations and trade publications — surpassing the impressive nine awards won in 2024.
       
      Best of Show Awards from Future
      AV Technology: Samsung Color E-Paper Digital Signage: Samsung Color E-Paper Installation: Samsung Color E-Paper and HoloDisplay Tech & Learning: 2025 Interactive Display  
      AV News Awards
      AV Project of the Year (Commercial) Award: Samsung for using the Outdoor LED Signage XHB series (P8) at Shinsegae Department Store in Seoul, South Korea Digital Signage Innovation of the Year Award: Transparent MICRO LED  
      Inavation Awards
      Applied Technology Award: Samsung for using Onyx Led screens at Pathé Palace in Paris, France  
      ▲ Employees from Samsung France receive the Applied Technology Award.
       
      Top New Technologies (TNT) Awards from Commercial Integrator
      All-Weather Display: OHDX Outdoor Signage 46”and 55” TVs: 2024 HBU8000 Hospitality TV Video Monitors: QHFX 115” Smart Signage  
      ISE Stand Design Awards from EXHIBITOR Magazine
      Sustainability Recognition XL (250 m2 or more): Samsung  
      ▲ The Sustainability Recognition XL award recognizes the eco-conscious design of Samsung’s ISE 2025 booth.
       
      ISE 2025 illustrated how quickly digital signage is evolving. Samsung is revolutionizing the industry with energy-efficient, AI-driven innovations — setting new standards with its award-winning lineups at ISE 2025 and beyond.
       
       
      1 The power measurement is based on IEC62301 standards from the International Electrotechnical Commission. According to the standards, the average power below 0.005W is indicated as 0.00W.
      2 Samsung Color E-Paper mobile app supports Android 10 and above, and iOS 15 and above. Availability may vary by device, software version and region.
      View the full article
    • By Samsung Newsroom
      Quantum dots have attracted attention as next-generation material for a wide range of applications including displays, medical devices and solar cells. In 2014, Samsung Electronics developed the world’s first no-cadmium quantum dot material and successfully commercialized quantum dot technology with its SUHD TVs. Since 2017, the company has continued to build on its legacy of quantum dot mastery through QLED — its own quantum dot TV series. Samsung Newsroom explored how quantum dots are taking Samsung displays to the next level.
       
       
      Quantum Dots: The Next Generation of Display Innovation
      Quantum dots are ultra-fine semiconductor particles that are tens of thousands of times thinner than a human hair. Since inception, their physical characteristics that allow them to provide the highest level of color accuracy and brightness among existing materials had them positioned to revolutionize display technology.
       
      When used in displays, quantum dots support a wide color gamut that closely matches colors perceived by the human eye and facilitate pixel-level light adjustment for more accurate black levels. Emitting light in all directions, quantum dots deliver uniform luminance and consistent color from any viewing angle while minimizing blue light exposure for a more comfortable viewing experience.
       
      ▲ SUHD TVs at CES 2015
       
       
      What Sets Quantum Dot TVs Apart: Content, Film Quality and No-Cadmium Technology
      The TV industry continues research and development into the commercialization of quantum dots as the material becomes a game-changer in display technology. For that reason, a variety of quantum dot TVs have hit the market recently — offering a wide range of options to customers.
       
      However, key differences in quantum dot TVs lie in how the technology is implemented and the overall quality of the display. To ensure a premium viewing experience, factors such as the amount of quantum dot content, the quality of quantum dot film and the use of no-cadmium materials must be considered.
       
      ▲ Factors to consider when selecting a high-quality quantum dot TV
       
       
      Quantum Dot Content
      The true quality of a quantum dot TV is defined by its quantum dot content. The quantum dot layer requires a minimum of 30 parts per million (ppm) of the material to achieve the vivid, rich picture quality and color expression that only quantum dots can deliver.
       
       
      Quantum Dot Film
      Quantum dot displays have a simpler and more efficient structure compared to LCDs. Samsung QLEDs eliminate the need for a phosphor layer, enhancing light and energy efficiency while delivering more vivid colors. A quantum dot OLED (QD-OLED), which consists of a thin-film transistor (TFT) layer,1 a self-emitting light source and a quantum dot film that uses the light emitted from the light source, takes a step further enhancing picture quality. In either case, a dedicated quantum dot film that contains sufficient quantum dots is key in delivering top-class picture quality and longevity.
       
      ▲ A comparison of QD-OLED and LCD displays
       
       
      No Cadmium
      In the early stages of developing quantum dot TVs, cadmium was essential to achieving the key benefits of quantum dots such as color reproduction and contrast ratio. At the time, cadmium was considered the most efficient material for producing quantum dots.
       
      However, cadmium’s toxicity became a significant obstacle to the commercialization of quantum dot technology. The element posed serious threats to the environment — making its widespread use difficult despite being the most suitable material for implementing quantum dot technology.
       
      In response to this challenge, Samsung developed the world’s first no-cadmium quantum dot material in 2014 and successfully commercialized quantum dot technology with its SUHD TVs in the following year to open a new era of quantum dot TVs.
       
       
      10 Years of Quantum Dot Innovation and Leadership
      Samsung has quickly recognized the potential of quantum dot technology and led innovation in the global display market over the past decade through continuous research and investment.
       
      ▲ A timeline of Samsung’s quantum dot technology development from 2001 to 2022
       
      Samsung began researching and developing quantum dot technology in 2001 — at a time when there was limited research on non-cadmium materials. Achieving vivid colors required making the nano-sized particles uniform, but the lack of technology and research made mass production extremely challenging.
       
      Despite these obstacles, Samsung succeeded in creating a no-cadmium nanocrystal material in 2014. Since then, the company has accumulated extensive expertise — registering more than 150 patents — and continuously worked on advancing the technology. Samsung’s long-standing commitment culminated in 2015 when the company unveiled the world’s first SUHD TVs with no-cadmium quantum dot technology.
       
      ▲ QLED TVs (75Q8C and 88Q8F) at Samsung’s First Look 2017 event during CES 2017
       
      Samsung’s QLED lineup was revealed in 2017, setting a new standard for premium TVs that overcame the limitations of OLED TVs. By applying metal quantum dot technology, Samsung achieved the Digital Cinema Initiative’s color standard DCI-P3 and achieved 100% color volume for the first time in the world — thereby presenting unparalleled color expression. Notably, the use of inorganic quantum dot technology protected the screens from burn-in2 to ensure consistent picture quality over time.
       
      ▲ (From left to right) Kwang-Hee Kim, Dr. Taehyung Kim, Dr, Eunjoo Jang, Sungwoo Kim and Seon-Myeong Choi from Samsung Advanced Institute of Technology
       
      Following its success in developing a red light-emitting element for displays in 2019, the company enhanced the luminous efficiency of blue self-emitting QLEDs — considered the most challenging to implement among the three primary QLED colors3 — to an industry-leading 20.2%.
       
      “Discovering a blue material for self-emitting QLEDs and demonstrating industry-leading performance at the device level were significant achievements of this research,” said Dr. Eunjoo Chang, a fellow at Samsung Advanced Institute of Technology. “Samsung’s distinctive quantum dot technology has once again overcome technical barriers.”
       
      This cutting-edge advancements led to the launch of the QD-OLED TVs, making history at CES 2022 by winning the Best of Innovation award for integrating quantum dot technology and OLED displays.
       
      Samsung remains dedicated to advancing quantum dot technology through continuous innovation. The company continues to invest in leading display technology — from QLED to Neo OLED — by offering high brightness, color accuracy and frequency. Driven by Samsung’s unrivaled quantum dot innovations, the future of display technology is brighter than ever.
       
       
      1 An electronic circuit that adjusts and controls the light-emitting layers
      2 Occurs when a static image is displayed for too long, causing color distortions or ghost images to remain on screen
      3 Red, green and blue
      View the full article
    • By Samsung Newsroom
      Integrated Systems Europe (ISE) 2025 kicked off on February 4 in Barcelona, highlighting the latest advancements in commercial display technology.
       
      Samsung Electronics welcomed guests with a striking 462” The Wall media facade at the entrance to its booth — while inside, the company showcased its energy-efficient Color E-Paper display alongside AI-powered upgrades to the SmartThings Pro platform. The supersized 115” 4K Smart Signage display captivated visitors with its immersive visuals as well.
       
      Samsung Newsroom explored the booth firsthand and captured these innovations leading the future of commercial displays.
       
      ▲ Visitors marvel at The Wall’s stunning visuals powered by MICRO LED technology.
       
      ▲ (From left) Hoon Chung, Executive Vice President; SW Yong, President and Head of Visual Display (VD) Business; and Seong Cho, Executive Vice President of Europe Office, from Samsung Electronics admire The Wall.
       
      ▲ The ultra-low power Samsung Color E-Paper boasts a slim, lightweight design.
       
      ▲ Visitors examine Samsung VXT, a comprehensive cloud-based content management solution (CMS) platform.
       
      ▲ Visitors crowd around the SmartThings Pro wall to see how the B2B management platform has expanded to include enterprise-grade IoT devices.
       
      ▲ Visitors interact with the Google Cast feature newly added to Samsung’s 2025 hotel TV lineup.
       
      ▲ SW Yong, President and Head of Visual Display (VD) Business at Samsung Electronics, tries out the 2025 Interactive Display equipped with Samsung AI Assistant.
       
      ▲ The 115” (16:9) 4K Smart Signage display boasts an ultra-large screen optimized for office spaces, retail stores and other business environments.
       
      ▲ A visitor observes the 105” (21:9) 5K Smart Signage display‘s various innovative features that make it the perfect option for video conferences.
      View the full article





×
×
  • Create New...